:root {
    /* Color Palette - Premium Dark Theme */
    --bg-main: #0a0a0c;
    --bg-alt: #111116;
    --text-main: #e2e8f0;
    --text-muted: #94a3b8;

    /* Accents */
    --accent-primary: #4a5a9c;
    /* Brand Owl Blue */
    --accent-secondary: #6e7ebd;
    /* Lighter Owl Blue */
    --accent-gradient: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));

    /* Semantic */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Layout */
    --container-width: 1200px;
    --section-gap: 3.5rem;
    --border-radius: 16px;
    --border-radius-sm: 8px;
}

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

/* Intro Splash Screen */
.intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-main);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.6s ease;
}

.intro-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}

.intro-logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    animation: introReveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.intro-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(74, 90, 156, 0.4));
}

.intro-brand {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 0.05em;
    opacity: 0;
    animation: introBrandAppear 0.8s ease forwards 0.5s;
}

@keyframes introReveal {
    0% {
        opacity: 0;
        transform: scale(0.7);
    }

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

@keyframes introBrandAppear {
    0% {
        opacity: 0;
        transform: translateY(8px);
    }

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
    /* Offset for fixed navbar */
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Basics */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* Launch Badge */
.launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    transition: background 0.3s ease;
}

.launch-badge:hover {
    background: rgba(255, 255, 255, 0.06);
}

.cd-label {
    opacity: 0.7;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.cd-timer {
    font-variant-numeric: tabular-nums;
    /* prevents jitter */
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--accent-secondary);
    display: inline-flex;
    align-items: center;
}

.cd-sep {
    opacity: 0.4;
    margin: 0 0.2rem;
    font-size: 0.8rem;
}

@media (max-width: 992px) {
    .hidden-mobile {
        display: none !important;
    }
}

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

.text-left {
    text-align: left;
}

p {
    color: var(--text-muted);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

/* Layout Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.container-narrow {
    max-width: 800px;
}

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

.bg-alt {
    background-color: var(--bg-alt);
}

.flex-row {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
}

.col-half {
    flex: 1;
}

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

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

/* Glassmorphism Classes */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: var(--border-radius);
}

.hover-lift {
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(74, 90, 156, 0.3);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(74, 90, 156, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(110, 126, 189, 0.6);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-main);
}

.btn-outline:hover {
    background: var(--glass-bg);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2rem);
    max-width: var(--container-width);
    border-radius: 100px;
    padding: 1rem 2rem;
    z-index: 100;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    position: relative;
    /* ensure absolute children are relative to this */
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
}

.logo-img {
    height: 32px;
    width: auto;
}

.logo-icon {
    color: var(--accent-primary);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.25rem;
    border-radius: 100px;
}

.lang-btn {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 0.3rem 0.6rem;
    border-radius: 100px;
    transition: all 0.2s ease;
}

.lang-btn:hover {
    color: var(--text-main);
}

.lang-btn.active {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 2px 10px rgba(74, 90, 156, 0.3);
}

.nav-links {
    display: flex;
    gap: 2rem;
    margin-right: 0;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-links a:hover,
.nav-links a.active {
    color: white;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 8rem;
    /* Account for navbar */
    position: relative;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
    opacity: 0.4;
    animation: drift 15s infinite alternate ease-in-out;
}

.glow-1 {
    width: 500px;
    height: 500px;
    background: rgba(74, 90, 156, 0.3);
    top: -100px;
    left: -100px;
}

.glow-2 {
    width: 600px;
    height: 600px;
    background: rgba(110, 126, 189, 0.2);
    bottom: -200px;
    right: -100px;
}

.solution-bg-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 50%;
    filter: blur(80px);
    left: -100px;
    top: 30%;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 30px) scale(1.1);
    }
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    flex: 1;
}

.badge-wrapper {
    margin-bottom: 1.5rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
}

.badge i {
    width: 14px;
    height: 14px;
}

.badge.green {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    color: var(--success);
}

.hero-headline {
    font-size: 4.5rem;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-trust {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Dashboard Mockup in Hero */
.hero-visual {
    flex: 1;
    perspective: 1000px;
}

.dashboard-mockup {
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    transform: rotateY(-5deg) rotateX(5deg);
    box-shadow: 20px 30px 60px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: rotateY(-5deg) rotateX(5deg) translateY(0px);
    }

    50% {
        transform: rotateY(-5deg) rotateX(5deg) translateY(-15px);
    }

    100% {
        transform: rotateY(-5deg) rotateX(5deg) translateY(0px);
    }
}

.mockup-header {
    background: rgba(0, 0, 0, 0.4);
    padding: 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
}

.traffic-lights {
    display: flex;
    gap: 6px;
}

.traffic-lights span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #4b5563;
}

.traffic-lights span:nth-child(1) {
    background: #ef4444;
}

.traffic-lights span:nth-child(2) {
    background: #f59e0b;
}

.traffic-lights span:nth-child(3) {
    background: #10b981;
}

.url-bar {
    flex: 1;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding: 4px 0;
    margin: 0 2rem;
    font-size: 0.8rem;
    color: var(--success);
    font-family: monospace;
}

.mockup-body {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
}

.chat-sim .msg {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem;
}

.msg.bot {
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--text-muted);
}

.msg.user {
    background: rgba(74, 90, 156, 0.1);
    border-left: 3px solid var(--accent-primary);
}

.msg.user span {
    display: block;
    font-size: 0.8rem;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.arrow-down {
    text-align: center;
    color: var(--success);
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.msg.sowa-output {
    background: rgba(16, 185, 129, 0.1);
    border-left: 3px solid var(--success);
}

.msg.sowa-output span {
    color: var(--success);
}

/* ChatGPT Window - iOS Style */
.chatgpt-window {
    border-radius: 20px;
    overflow: hidden;
    background: #2f2f2f;
    display: flex;
    flex-direction: column;
    min-height: 480px;
    max-height: 520px;
    height: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
}

.chatgpt-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: #2f2f2f;
}

.chatgpt-model {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #e0e0e0;
    font-size: 1rem;
}

.chatgpt-model strong {
    font-weight: 700;
    color: #fff;
}

.model-version {
    color: #9a9a9a;
    font-weight: 400;
}

/* Chat Demo Shared Container */
.chat-demo-container {
    position: relative;
    width: 100%;
    min-height: 520px;
}

.chat-demo-container>div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.8s ease, transform 0.8s ease, visibility 0.8s;
}

.chat-demo-container>div.hidden {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.97);
    pointer-events: none;
}

.chat-demo-container>div.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    pointer-events: auto;
}

/* Claude Window Styles */
.claude-window {
    display: flex;
    flex-direction: column;
    background: #252321;
    color: #e2dfd8;
    font-family: var(--font-main);
    border-radius: 12px;
}

.claude-header {
    display: none;
}

.claude-plan {
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.claude-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 24px 24px 0;
    overflow-y: auto;
}

.claude-greeting {
    text-align: center;
    margin-bottom: 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.claude-logo {
    width: 32px;
    height: 32px;
    color: #d88961;
}

.claude-greeting h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 500;
    color: #e2dfd8;
    margin: 0;
}

.claude-messages {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 20px;
}

.claude-input-container {
    padding: 12px 24px 16px;
}

.claude-input-area {
    background: #33312f;
    border-radius: 16px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.claude-input-box {
    min-height: 48px;
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    color: #e2dfd8;
    margin-bottom: 8px;
    position: relative;
}

.claude-placeholder {
    color: #8b8884;
    position: absolute;
    pointer-events: none;
}

.claude-cursor {
    display: inline-block;
    width: 2px;
    height: 16px;
    background: #d88961;
    margin-left: 1px;
    animation: cursorBlink 1s step-end infinite;
    vertical-align: middle;
}

.claude-cursor.hidden {
    display: none;
}

.claude-typing-text {
    font-size: 1.05rem;
    color: #e2dfd8;
}

.claude-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #8b8884;
}

.claude-toolbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.claude-model-selector {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
}

.claude-send-btn {
    background: #d88961;
    color: #fff;
    border: none;
    border-radius: 8px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.3s;
}

.claude-send-btn[disabled] {
    opacity: 0.5;
    background: #504d4a;
    color: #8b8884;
}

.claude-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    font-size: 0.75rem;
    color: #8b8884;
    padding: 0 4px;
}

.claude-tools {
    display: flex;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 8px;
    border-radius: 12px;
}

/* Gemini Window Styles */
.gemini-window {
    display: flex;
    flex-direction: column;
    background: #1a1a1a;
    color: #e3e3e3;
    font-family: var(--font-main);
    border-radius: 12px;
}

.gemini-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
}

.gemini-brand {
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 400;
    color: #e3e3e3;
}

.gemini-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 24px 28px 0;
    overflow-y: auto;
}

.gemini-greeting {
    margin-bottom: 20px;
}

.gemini-sparkle-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.gemini-sparkle {
    display: inline-block;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.gemini-hello {
    font-size: 2rem;
    font-weight: 400;
    color: #5f6368;
    font-family: var(--font-heading);
}

.gemini-greeting h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    color: #e3e3e3;
    margin: 0;
}

.gemini-messages {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 20px;
}

.gemini-input-container {
    padding: 12px 20px 20px;
}

.gemini-input-area {
    background: #282828;
    border-radius: 24px;
    padding: 14px 18px;
    border: 1px solid #3c3c3c;
}

.gemini-input-box {
    min-height: 40px;
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #e3e3e3;
    margin-bottom: 8px;
    position: relative;
}

.gemini-placeholder {
    color: #8a8a8a;
    position: absolute;
    pointer-events: none;
}

.gemini-cursor {
    display: inline-block;
    width: 2px;
    height: 16px;
    background: #4285f4;
    margin-left: 1px;
    animation: cursorBlink 1s step-end infinite;
    vertical-align: middle;
}

.gemini-cursor.hidden {
    display: none;
}

.gemini-typing-text {
    font-size: 1rem;
    color: #e3e3e3;
}

.gemini-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #8a8a8a;
}

.gemini-toolbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gemini-tools-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
}

.gemini-toolbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gemini-model-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    color: #e3e3e3;
}

.gemini-send-btn {
    background: #3c3c3c;
    color: #8a8a8a;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.gemini-send-btn.active {
    background: #4285f4;
    color: #fff;
}

.chatgpt-header-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    color: #9a9a9a;
}

.chatgpt-body {
    flex: 1;
    padding: 16px 18px;
    overflow-y: auto;
    background: #212121;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chatgpt-input-area {
    padding: 10px 12px 14px;
    background: #2f2f2f;
}

.chatgpt-input-box {
    background: #3e3e3e;
    border-radius: 22px;
    padding: 12px 18px;
    min-height: 44px;
    display: flex;
    align-items: center;
    position: relative;
    color: #e0e0e0;
    font-size: 0.95rem;
}

.chatgpt-placeholder {
    color: #8a8a8a;
    pointer-events: none;
    font-size: 0.95rem;
}

.chatgpt-input-box .chat-typing-text:not(:empty)~.chatgpt-placeholder {
    display: none;
}

.chatgpt-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 6px 0;
}

.chatgpt-toolbar-left,
.chatgpt-toolbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.chatgpt-toolbar-left i {
    width: 20px;
    height: 20px;
    color: #9a9a9a;
}

.chatgpt-toolbar-right i {
    color: #9a9a9a;
}

.toolbar-version {
    color: #9a9a9a;
    font-size: 0.85rem;
    font-weight: 500;
}

.chatgpt-send-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #676767;
    color: #2f2f2f;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.chatgpt-send-btn i {
    width: 16px;
    height: 16px;
    color: #2f2f2f;
}

.chatgpt-send-btn.active {
    background: #fff;
}

/* Chat Messages - ChatGPT Style */
.chat-message {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    opacity: 0;
    animation: chatMsgIn 0.3s ease forwards;
}

@keyframes chatMsgIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #444;
}

.chat-avatar i {
    width: 16px;
    height: 16px;
    color: #ccc;
}

.chat-message.user .chat-avatar {
    background: var(--accent-primary);
}

.chat-message.user .chat-avatar i {
    color: #fff;
}

.chat-bubble {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #e0e0e0;
    position: relative;
    max-width: 100%;
}

.interception-overlay {
    display: none;
}

.sowa-indicator {
    display: none;
    font-size: 0.7rem;
    color: var(--success);
    margin-top: 4px;
    gap: 4px;
    align-items: center;
}

.sowa-indicator i {
    width: 12px;
    height: 12px;
}

.chat-bubble.show-indicator .sowa-indicator {
    display: flex;
}

.chat-bubble.intercepting {
    border-left: 2px solid var(--success);
    padding-left: 8px;
}

.sensitive-data {
    transition: all 0.4s ease;
}

.sensitive-data.highlighted {
    background: rgba(239, 68, 68, 0.25);
    color: #ef4444;
    padding: 1px 4px;
    border-radius: 3px;
}

.sensitive-data.anonymized {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success);
    padding: 1px 4px;
    border-radius: 3px;
    font-family: monospace;
    font-weight: 600;
    font-size: 0.85rem;
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 4px 0;
}

.typing-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #666;
    animation: typingBounce 1.4s ease-in-out infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {

    0%,
    80%,
    100% {
        transform: scale(0.6);
        opacity: 0.4;
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.chat-cursor {
    display: inline-block;
    width: 2px;
    height: 16px;
    background: #10a37f;
    margin-left: 1px;
    animation: cursorBlink 1s step-end infinite;
    vertical-align: middle;
}

.chat-cursor.hidden {
    display: none;
}

@keyframes cursorBlink {
    50% {
        opacity: 0;
    }
}

.highlight-anon {
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.4);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.85rem;
}

/* Sections Default */
.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Problem Cards */
.card {
    padding: 2rem;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--danger);
}

/* Feature List */
.feature-list {
    list-style: none;
    margin-top: 2rem;
}

.feature-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-list i {
    color: var(--accent-primary);
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.feature-list strong {
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

/* Architecture Diagram */
.architecture-diagram {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    padding: 3rem 2rem;
}

.node {
    width: 100%;
    padding: 1.5rem;
    border-radius: var(--border-radius-sm);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-weight: 600;
    font-size: 1.2rem;
}

.node i {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.node span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 0.5rem;
}

.node.highlighted {
    background: rgba(74, 90, 156, 0.1);
    border-color: rgba(74, 90, 156, 0.3);
    box-shadow: 0 0 30px rgba(74, 90, 156, 0.2);
}

.node.highlighted i {
    color: var(--accent-primary);
}

.connector {
    color: var(--text-muted);
    opacity: 0.5;
    display: flex;
    justify-content: center;
}

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

/* Industry Grid */
.industry-card {
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.industry-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
}

.industry-card i {
    width: 40px;
    height: 40px;
    color: var(--accent-secondary);
    margin-bottom: 1rem;
}

.industry-card h4 {
    margin-bottom: 0.5rem;
}

.industry-card p {
    font-size: 0.9rem;
}

/* Pricing Cards */
.pricing-cards {
    display: flex;
    gap: 2rem;
    margin-top: 4rem;
    text-align: left;
}

.pricing-card {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pricing-card.highlighted {
    border-color: var(--accent-primary);
    box-shadow: 0 10px 40px rgba(74, 90, 156, 0.15);
    background: linear-gradient(180deg, rgba(74, 90, 156, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.card-header {
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 2rem;
}

.card-header h3 {
    font-size: 1.5rem;
}

.price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--accent-primary);
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    margin-bottom: 3rem;
    flex: 1;
}

.pricing-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
}

.pricing-features i {
    width: 20px;
    color: var(--success);
}

.pricing-features i[data-lucide="minus"] {
    color: #4b5563;
}

/* Footer / Form */
.contact-form {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    margin: 3rem auto 1rem;
    max-width: 500px;
    border-radius: 100px;
}

.contact-form .input-light {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    padding: 0 1rem;
    font-size: 1rem;
    outline: none;
}

.contact-form .btn {
    border-radius: 100px;
}

.sub-text {
    font-size: 0.85rem;
}

.footer-bottom {
    margin-top: 5rem;
    padding: 2rem 0;
    border-top: 1px solid var(--glass-border);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-bottom .flex-between {
    flex-wrap: wrap;
    gap: 1.5rem;
}

.logo-small {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: white;
}

.logo-small .logo-img {
    height: 20px;
    width: auto;
}

.logo-small i {
    color: var(--accent-primary);
    width: 18px;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-links a {
    color: var(--text-muted);
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
}

.social-links a:hover {
    color: var(--accent-secondary);
    transform: translateY(-2px);
}

.social-links i,
.social-links svg {
    width: 18px;
    height: 18px;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

/* Responsive adjustments */
@media (max-width: 992px) {

    .hero-content,
    .flex-row {
        flex-direction: column;
        text-align: center;
    }

    .hero-headline {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        margin: 0 auto 2.5rem;
    }

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

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

    .section-description.text-left {
        text-align: center;
        margin: 0 auto;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .grid-3,
    .grid-4,
    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .pricing-cards {
        flex-direction: column;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .contact-form {
        flex-direction: column;
        border-radius: var(--border-radius-sm);
        padding: 1.5rem;
    }

    .contact-form .btn {
        border-radius: var(--border-radius-sm);
    }

    .footer-bottom .flex-between {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* FAQ Section */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-sm);
    background: var(--glass-bg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
}

.faq-question i {
    color: var(--accent-secondary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 1.5rem;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    /* arbitrary large value for transition */
    padding: 0 1.5rem 1.5rem 1.5rem;
}

/* About Us Section */
.about-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.about-row {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-row.reverse {
    flex-direction: row-reverse;
}

.about-image {
    flex: 1;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    border: 1px solid var(--glass-border);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image img.about-logo-img {
    width: 60%;
    max-width: 220px;
    margin: 3rem auto;
    display: block;
    filter: drop-shadow(0 0 40px rgba(74, 90, 156, 0.35));
}

.about-image:has(.about-logo-img) {
    border: none;
    box-shadow: none;
    background: transparent;
}

.about-row:hover .about-image img {
    transform: scale(1.05);
}

.about-text {
    flex: 1.2;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    padding: 2rem;
    text-align: center;
}

.value-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.5rem;
    background: rgba(74, 90, 156, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
}

.value-card h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

@media (max-width: 992px) {

    .about-row,
    .about-row.reverse {
        flex-direction: column;
        gap: 2rem;
    }

    .about-text {
        text-align: center;
    }
}

/* Subpage Styles */
.sub-hero {
    min-height: 60vh;
    padding-top: 10rem;
    background: linear-gradient(to bottom, rgba(10, 10, 12, 0) 0%, rgba(17, 17, 22, 1) 100%);
}

.about-detail .about-row {
    margin-bottom: 6rem;
}

.about-detail .about-text h3 {
    font-size: 2.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Contact / Get Started Page */
.contact-hero {
    position: relative;
    padding: 8rem 0 3rem;
    text-align: center;
    overflow: hidden;
}

.contact-hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(74, 90, 156, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.contact-hero-content h1 {
    margin-bottom: 1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
}

.contact-section {
    padding-top: 2rem;
}

.contact-form-card {
    padding: 2.5rem;
    border-radius: var(--border-radius);
}

.get-started-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-sm);
    padding: 0.9rem 1rem;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(148, 163, 184, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(74, 90, 156, 0.15);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group select option {
    background: var(--bg-alt);
    color: var(--text-main);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-full {
    width: 100%;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    font-size: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    padding: 1.5rem;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: rgba(74, 90, 156, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.info-icon i {
    width: 20px;
    height: 20px;
}

.info-card h4 {
    font-size: 1rem;
    color: var(--text-main);
}

.info-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

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

    .contact-hero {
        padding: 8rem 0 2rem;
    }
}