:root {
    color-scheme: light;
    --font-sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", "Helvetica Neue", Arial, sans-serif;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-200: #bfdbfe;
    --blue-300: #93c5fd;
    --blue-400: #60a5fa;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --indigo-400: #818cf8;
    --indigo-500: #6366f1;
    --indigo-600: #4f46e5;
    --emerald-100: #d1fae5;
    --emerald-400: #34d399;
    --emerald-500: #10b981;
    --emerald-600: #059669;
    --rose-50: #fff1f2;
    --rose-500: #f43f5e;
    --teal-500: #14b8a6;
    --purple-500: #a855f7;
    --amber-500: #f59e0b;
    --white: #ffffff;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select {
    font: inherit;
}

.marketing-home {
    min-height: 100vh;
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.08), transparent 24%),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 42%, #f8fafc 100%);
    color: var(--slate-900);
    font-family: var(--font-sans);
}

.marketing-home::selection,
.marketing-home *::selection,
.selection\:bg-blue-200::selection,
.selection\:bg-blue-200 *::selection {
    background: var(--blue-200);
}

.marketing-grid-bg {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 28px 28px;
}

.lucide-icon {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

.hidden {
    display: none;
}

.block {
    display: block;
}

.inline-flex {
    display: inline-flex;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.min-h-screen {
    min-height: 100vh;
}

.flex-col {
    flex-direction: column;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

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

.items-start {
    align-items: flex-start;
}

.justify-between {
    justify-content: space-between;
}

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

.justify-end {
    justify-content: flex-end;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.pointer-events-none {
    pointer-events: none;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.inset-0 {
    inset: 0;
}

.inset-y-0 {
    top: 0;
    bottom: 0;
}

.top-0 {
    top: 0;
}

.right-0 {
    right: 0;
}

.bottom-0 {
    bottom: 0;
}

.left-0 {
    left: 0;
}

.z-10 {
    z-index: 10;
}

.z-50 {
    z-index: 50;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-10 {
    margin-top: 2.5rem;
}

.ml-1 {
    margin-left: 0.25rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.mr-3 {
    margin-right: 0.75rem;
}

.mr-6 {
    margin-right: 1.5rem;
}

.-mt-20 {
    margin-top: -5rem;
}

.-mr-20 {
    margin-right: -5rem;
}

.-mb-20 {
    margin-bottom: -5rem;
}

.-ml-20 {
    margin-left: -5rem;
}

.w-3 {
    width: 0.75rem;
}

.w-4 {
    width: 1rem;
}

.w-5 {
    width: 1.25rem;
}

.w-6 {
    width: 1.5rem;
}

.w-8 {
    width: 2rem;
}

.w-10 {
    width: 2.5rem;
}

.w-12 {
    width: 3rem;
}

.w-16 {
    width: 4rem;
}

.w-80 {
    width: 20rem;
}

.w-full {
    width: 100%;
}

.h-3 {
    height: 0.75rem;
}

.h-4 {
    height: 1rem;
}

.h-5 {
    height: 1.25rem;
}

.h-6 {
    height: 1.5rem;
}

.h-8 {
    height: 2rem;
}

.h-10 {
    height: 2.5rem;
}

.h-12 {
    height: 3rem;
}

.h-16 {
    height: 4rem;
}

.h-80 {
    height: 20rem;
}

.h-full {
    height: 100%;
}

.max-w-3xl {
    max-width: 48rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-7xl {
    max-width: 80rem;
}

.overflow-hidden {
    overflow: hidden;
}

.rounded-full {
    border-radius: 9999px;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.rounded-3xl {
    border-radius: 1.5rem;
}

.rounded-tr-xl {
    border-top-right-radius: 0.75rem;
}

.rounded-bl-xl {
    border-bottom-left-radius: 0.75rem;
}

.rounded-tl-none {
    border-top-left-radius: 0;
}

.rounded-tr-none {
    border-top-right-radius: 0;
}

.border {
    border: 1px solid transparent;
}

.border-2 {
    border: 2px solid transparent;
}

.border-b {
    border-bottom: 1px solid transparent;
}

.border-t {
    border-top: 1px solid transparent;
}

.border-transparent {
    border-color: transparent;
}

.border-slate-100 {
    border-color: var(--slate-100);
}

.border-slate-200 {
    border-color: var(--slate-200);
}

.border-slate-300 {
    border-color: var(--slate-300);
}

.border-slate-600 {
    border-color: var(--slate-600);
}

.border-slate-700 {
    border-color: var(--slate-700);
}

.border-slate-800 {
    border-color: var(--slate-800);
}

.border-blue-100 {
    border-color: var(--blue-100);
}

.border-blue-500 {
    border-color: var(--blue-500);
}

.border-blue-500\/30 {
    border-color: rgba(59, 130, 246, 0.3);
}

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

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

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

.bg-slate-700\/50 {
    background-color: rgba(51, 65, 85, 0.5);
}

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

.bg-slate-800\/50 {
    background-color: rgba(30, 41, 59, 0.5);
}

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

.bg-slate-900\/90 {
    background-color: rgba(15, 23, 42, 0.9);
}

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

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

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

.bg-blue-600\/20 {
    background-color: rgba(37, 99, 235, 0.2);
}

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

.bg-indigo-500\/20 {
    background-color: rgba(99, 102, 241, 0.2);
}

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

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

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

.bg-emerald-500\/20 {
    background-color: rgba(16, 185, 129, 0.2);
}

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

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

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

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

.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text;
}

.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-from), var(--tw-gradient-to));
}

.from-blue-400 {
    --tw-gradient-from: var(--blue-400);
}

.to-indigo-400 {
    --tw-gradient-to: var(--indigo-400);
}

.to-indigo-500 {
    --tw-gradient-to: var(--indigo-500);
}

.text-transparent {
    color: transparent;
}

.text-white {
    color: var(--white);
}

.text-slate-300 {
    color: var(--slate-300);
}

.text-slate-400 {
    color: var(--slate-400);
}

.text-slate-500 {
    color: var(--slate-500);
}

.text-slate-600 {
    color: var(--slate-600);
}

.text-slate-700 {
    color: var(--slate-700);
}

.text-slate-900 {
    color: var(--slate-900);
}

.text-blue-300 {
    color: var(--blue-300);
}

.text-blue-400 {
    color: var(--blue-400);
}

.text-blue-500 {
    color: var(--blue-500);
}

.text-blue-600 {
    color: var(--blue-600);
}

.text-indigo-400 {
    color: var(--indigo-400);
}

.text-indigo-500 {
    color: var(--indigo-500);
}

.text-emerald-400 {
    color: var(--emerald-400);
}

.text-emerald-500 {
    color: var(--emerald-500);
}

.text-emerald-600 {
    color: var(--emerald-600);
}

.text-rose-500 {
    color: var(--rose-500);
}

.text-teal-500 {
    color: var(--teal-500);
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.font-medium {
    font-weight: 500;
}

.font-bold {
    font-weight: 700;
}

.font-extrabold {
    font-weight: 800;
}

.font-sans {
    font-family: var(--font-sans);
}

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

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

.tracking-tight {
    letter-spacing: -0.025em;
}

.tracking-wide {
    letter-spacing: 0.025em;
}

.leading-tight {
    line-height: 1.2;
}

.leading-relaxed {
    line-height: 1.625;
}

.line-through {
    text-decoration: line-through;
}

.p-3 {
    padding: 0.75rem;
}

.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.p-10 {
    padding: 2.5rem;
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.pt-32 {
    padding-top: 8rem;
}

.pb-4 {
    padding-bottom: 1rem;
}

.pb-20 {
    padding-bottom: 5rem;
}

.pl-3 {
    padding-left: 0.75rem;
}

.pl-10 {
    padding-left: 2.5rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-10 {
    gap: 2.5rem;
}

.gap-16 {
    gap: 4rem;
}

.space-x-2 > :not([hidden]) ~ :not([hidden]) {
    margin-left: 0.5rem;
}

.space-x-4 > :not([hidden]) ~ :not([hidden]) {
    margin-left: 1rem;
}

.space-x-6 > :not([hidden]) ~ :not([hidden]) {
    margin-left: 1.5rem;
}

.space-x-8 > :not([hidden]) ~ :not([hidden]) {
    margin-left: 2rem;
}

.space-y-3 > :not([hidden]) ~ :not([hidden]) {
    margin-top: 0.75rem;
}

.space-y-4 > :not([hidden]) ~ :not([hidden]) {
    margin-top: 1rem;
}

.space-y-5 > :not([hidden]) ~ :not([hidden]) {
    margin-top: 1.25rem;
}

.space-y-8 > :not([hidden]) ~ :not([hidden]) {
    margin-top: 2rem;
}

.shadow-sm {
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

.shadow-lg {
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.18);
}

.shadow-xl {
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.18);
}

.shadow-2xl {
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.28);
}

.shadow-blue-500\/30 {
    box-shadow: 0 18px 45px rgba(59, 130, 246, 0.3);
}

.opacity-5 {
    opacity: 0.05;
}

.opacity-20 {
    opacity: 0.2;
}

.opacity-40 {
    opacity: 0.4;
}

.opacity-60 {
    opacity: 0.6;
}

.group:hover .group-hover\:opacity-10 {
    opacity: 0.1;
}

.blur-3xl {
    filter: blur(64px);
}

.blur-\[100px\] {
    filter: blur(100px);
}

.backdrop-blur-md {
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.transform {
    transform: translateZ(0);
}

.transition-all {
    transition: all 0.25s ease;
}

.transition-colors {
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.transition-shadow {
    transition: box-shadow 0.25s ease;
}

.transition-opacity {
    transition: opacity 0.25s ease;
}

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

.animate-fade-in-up {
    animation: fadeInUp 0.5s ease-out both;
}

.animate-pulse {
    animation: pulse 1.8s ease-in-out infinite;
}

.appearance-none {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.focus\:outline-none:focus {
    outline: none;
}

.focus\:border-blue-500:focus {
    border-color: var(--blue-500);
}

.focus\:ring-blue-500:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18);
}

.focus\:ring-2:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18);
}

.focus\:ring-offset-2:focus {
    outline-offset: 2px;
}

.hover\:bg-blue-500:hover {
    background-color: var(--blue-500);
}

.hover\:bg-blue-700:hover {
    background-color: #1d4ed8;
}

.hover\:bg-slate-700:hover {
    background-color: var(--slate-700);
}

.hover\:bg-white:hover {
    background-color: var(--white);
}

.hover\:text-white:hover {
    color: var(--white);
}

.hover\:shadow-md:hover {
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
}

.hover\:shadow-xl:hover {
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.18);
}

.hover\:-translate-y-1:hover {
    transform: translateY(-0.25rem);
}

.marketing-home #live-feed-text {
    transition: opacity 0.3s ease-in-out;
}

.marketing-home a,
.marketing-home button {
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.marketing-home a:hover,
.marketing-home button:hover {
    transform: translateY(-1px);
}

.marketing-home a:focus-visible,
.marketing-home button:focus-visible,
.marketing-home input:focus-visible,
.marketing-home select:focus-visible {
    outline: 2px solid rgba(59, 130, 246, 0.65);
    outline-offset: 2px;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

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

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

    50% {
        opacity: 0.35;
    }
}

@media (min-width: 640px) {
    .sm\:w-auto {
        width: auto;
    }

    .sm\:flex-row {
        flex-direction: row;
    }

    .sm\:space-x-6 > :not([hidden]) ~ :not([hidden]) {
        margin-left: 1.5rem;
    }

    .sm\:space-y-0 > :not([hidden]) ~ :not([hidden]) {
        margin-top: 0;
    }

    .sm\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .sm\:pt-40 {
        padding-top: 10rem;
    }

    .sm\:pb-24 {
        padding-bottom: 6rem;
    }

    .sm\:text-sm {
        font-size: 0.875rem;
        line-height: 1.25rem;
    }

    .sm\:text-xl {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }

    .sm\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }

    .sm\:text-5xl {
        font-size: 3rem;
        line-height: 1;
    }
}

@media (min-width: 768px) {
    .md\:mb-0 {
        margin-bottom: 0;
    }

    .md\:block {
        display: block;
    }

    .md\:flex {
        display: flex;
    }

    .md\:inline-flex {
        display: inline-flex;
    }

    .md\:flex-row {
        flex-direction: row;
    }

    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .md\:items-start {
        align-items: flex-start;
    }

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

    .md\:w-5\/12 {
        width: 41.666667%;
    }

    .md\:w-7\/12 {
        width: 58.333333%;
    }

    .md\:-translate-y-4 {
        transform: translateY(-1rem);
    }
}

@media (min-width: 1024px) {
    .lg\:w-1\/2 {
        width: 50%;
    }

    .lg\:flex-row {
        flex-direction: row;
    }

    .lg\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .lg\:text-6xl {
        font-size: 3.75rem;
        line-height: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .marketing-home *,
    .marketing-home *::before,
    .marketing-home *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.section-shell {
    width: min(100%, 80rem);
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.marketing-nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 60;
    background: rgba(9, 15, 29, 0.82);
    border-bottom: 1px solid rgba(148, 163, 184, 0.14);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.nav-inner {
    min-height: 4.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-weight: 700;
}

.brand-mark {
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.7rem;
    background: linear-gradient(135deg, #60a5fa, #4f46e5);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
    font-size: 0.95rem;
}

.brand-wordmark {
    letter-spacing: -0.02em;
    font-size: 1.05rem;
}

.nav-links,
.nav-actions {
    display: flex;
    align-items: center;
}

.nav-links {
    gap: 1.75rem;
}

.nav-actions {
    gap: 0.9rem;
}

.nav-link {
    color: rgba(226, 232, 240, 0.82);
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--white);
}

.button-primary,
.button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.1rem;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid transparent;
}

.button-primary {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: var(--white);
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.28);
}

.button-primary:hover {
    filter: brightness(1.04);
}

.button-secondary {
    color: var(--white);
    border-color: rgba(148, 163, 184, 0.22);
    background: rgba(255, 255, 255, 0.04);
}

.button-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
}

.button-small {
    min-height: 2.65rem;
    padding: 0 1rem;
    font-size: 0.92rem;
}

.button-link {
    color: rgba(226, 232, 240, 0.82);
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.2s;
}

.button-link:hover {
    color: var(--white);
}

.button-large {
    min-height: 3.5rem;
    padding: 0 1.5rem;
    font-size: 1rem;
}

.hero-stage {
    position: relative;
    overflow: hidden;
    padding-top: 8.5rem;
    padding-bottom: 5rem;
    background:
        radial-gradient(circle at top center, rgba(99, 102, 241, 0.18), transparent 28%),
        linear-gradient(180deg, #08101f 0%, #0f172a 52%, #111c31 100%);
    color: var(--white);
}

.hero-grid-layer {
    position: absolute;
    inset: 0;
    opacity: 0.08;
}

.hero-orb {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 999px;
    filter: blur(100px);
    opacity: 0.24;
    pointer-events: none;
}

.hero-orb-right {
    top: -7rem;
    right: -8rem;
    background: #2563eb;
}

.hero-orb-left {
    bottom: -10rem;
    left: -8rem;
    background: #4f46e5;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

.hero-copy {
    max-width: 42rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 2rem;
    padding: 0 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(59, 130, 246, 0.16);
    background: rgba(239, 246, 255, 0.82);
    color: var(--blue-600);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.eyebrow-dark {
    border-color: rgba(125, 211, 252, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: #bfdbfe;
}

.hero-title {
    margin: 1.1rem 0 0;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
    font-weight: 800;
    text-wrap: balance;
}

.hero-lead,
.section-lead {
    margin: 1.2rem 0 0;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--slate-600);
}

.hero-lead {
    color: rgba(226, 232, 240, 0.82);
    max-width: 40rem;
}

.hero-tags {
    margin-top: 1.8rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag-chip {
    padding: 0.72rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.16);
    color: rgba(241, 245, 249, 0.88);
    font-size: 0.92rem;
    font-weight: 600;
}

.hero-actions {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.hero-metrics {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
}

.metric-card {
    padding: 1.2rem 1.25rem;
    border-radius: 1.2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(15, 23, 42, 0.3));
    border: 1px solid rgba(148, 163, 184, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--white);
}

.metric-label {
    margin-top: 0.35rem;
    color: rgba(203, 213, 225, 0.82);
    font-size: 0.92rem;
    line-height: 1.5;
}

.live-feed-pill {
    margin-top: 1.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.85rem 1.1rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.42);
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.18);
}

.hero-proof {
    width: 100%;
}

.proof-panel {
    position: relative;
    border-radius: 1.75rem;
    padding: 1.5rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(30, 41, 59, 0.82)),
        linear-gradient(135deg, rgba(37, 99, 235, 0.14), rgba(79, 70, 229, 0.12));
    border: 1px solid rgba(191, 219, 254, 0.24);
    box-shadow:
        0 30px 80px rgba(2, 6, 23, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.proof-panel-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.proof-kicker {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #93c5fd;
    text-transform: uppercase;
}

.proof-title {
    margin: 0.65rem 0 0;
    font-size: 1.35rem;
    line-height: 1.35;
    color: var(--white);
}

.status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2rem;
    padding: 0 0.8rem;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.14);
    border: 1px solid rgba(96, 165, 250, 0.22);
    color: #bfdbfe;
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
}

.status-pill-success {
    background: rgba(16, 185, 129, 0.12);
    border-color: rgba(52, 211, 153, 0.18);
    color: #86efac;
}

.proof-scoreboard {
    margin-top: 1.4rem;
    display: grid;
    gap: 0.85rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.score-item {
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(8, 15, 31, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.16);
}

.score-label {
    display: block;
    font-size: 0.78rem;
    line-height: 1.4;
    color: rgba(148, 163, 184, 0.92);
}

.score-value {
    display: block;
    margin-top: 0.45rem;
    font-size: 1.65rem;
    line-height: 1;
    color: var(--white);
    letter-spacing: -0.04em;
}

.proof-stack {
    margin-top: 1rem;
    display: grid;
    gap: 0.9rem;
}

.proof-card {
    padding: 1rem 1rem 1.05rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.98);
    color: var(--slate-900);
    border: 1px solid rgba(226, 232, 240, 0.88);
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.16);
}

.proof-card-head {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.92rem;
    font-weight: 700;
}

.proof-card p {
    margin: 0.8rem 0 0;
    font-size: 0.98rem;
    line-height: 1.55;
    font-weight: 600;
}

.proof-card small {
    display: block;
    margin-top: 0.4rem;
    color: var(--slate-500);
    font-size: 0.85rem;
    line-height: 1.5;
}

.proof-card-chat {
    background: linear-gradient(180deg, #f8fafc, #eff6ff);
}

.chat-preview {
    margin-top: 0.9rem;
    display: grid;
    gap: 0.7rem;
}

.chat-bubble {
    max-width: 85%;
    padding: 0.85rem 1rem;
    border-radius: 1rem;
    font-size: 0.92rem;
    line-height: 1.55;
}

.chat-bubble-self {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: var(--white);
    border-top-left-radius: 0.25rem;
    box-shadow: 0 16px 30px rgba(37, 99, 235, 0.2);
}

.chat-bubble-other {
    margin-left: auto;
    background: #ffffff;
    color: var(--slate-700);
    border: 1px solid rgba(203, 213, 225, 0.9);
    border-top-right-radius: 0.25rem;
}

.trust-strip {
    margin-top: -2rem;
    position: relative;
    z-index: 2;
}

.trust-feed-shell {
    margin-bottom: 1rem;
}

.trust-feed-shell .live-feed-pill {
    width: 100%;
    margin-top: 0;
    justify-content: center;
    border-radius: 1.15rem;
    background: rgba(15, 23, 42, 0.94);
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.16);
}

.trust-grid {
    display: grid;
    gap: 1rem;
}

.trust-item {
    padding: 1.2rem 1.25rem;
    border-radius: 1.15rem;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.trust-name {
    display: block;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--blue-600);
    text-transform: uppercase;
}

.trust-item p {
    margin: 0.5rem 0 0;
    color: var(--slate-600);
    line-height: 1.6;
}

.section-block {
    padding: 6rem 0;
}

.section-soft {
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.92), rgba(255, 255, 255, 0.98));
}

.section-intro {
    max-width: 45rem;
    margin-bottom: 2.75rem;
}

.section-intro-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-intro-inverse .section-title,
.section-title-inverse {
    color: #f8fafc;
    text-shadow: 0 1px 18px rgba(15, 23, 42, 0.22);
}

.cta-copy .section-title-inverse {
    color: #ffffff;
}

.section-intro-inverse .section-lead,
.section-lead-inverse {
    color: rgba(203, 213, 225, 0.86);
}

.section-title {
    margin: 0.85rem 0 0;
    font-size: clamp(1.65rem, 3vw, 2.4rem);
    line-height: 1.18;
    letter-spacing: -0.03em;
    font-weight: 700;
    color: var(--slate-900);
    text-wrap: balance;
}

.feature-grid {
    display: grid;
    gap: 1.2rem;
}

.surface-card {
    padding: 1.6rem;
    border-radius: 1.4rem;
    background: linear-gradient(180deg, #ffffff, #fbfdff);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.surface-card h3 {
    margin: 0;
    font-size: 1.28rem;
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: var(--slate-900);
}

.surface-card p {
    margin: 0.85rem 0 0;
    color: var(--slate-600);
    line-height: 1.72;
}

.surface-icon {
    width: 4rem;
    height: 4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    margin-bottom: 1.25rem;
}

.surface-icon-rose {
    background: rgba(244, 63, 94, 0.08);
}

.surface-icon-blue {
    background: rgba(59, 130, 246, 0.08);
}

.surface-icon-indigo {
    background: rgba(99, 102, 241, 0.08);
}

.surface-icon-emerald {
    background: rgba(16, 185, 129, 0.08);
}

.solution-layout {
    display: grid;
    gap: 1.25rem;
}

.principle-panel {
    padding: 1.75rem;
    border-radius: 1.5rem;
    background: linear-gradient(180deg, #0f172a, #16213a);
    color: var(--white);
    border: 1px solid rgba(148, 163, 184, 0.14);
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.18);
}

.principle-panel h3 {
    margin: 1rem 0 0;
    font-size: 1.55rem;
    line-height: 1.3;
}

.principle-list {
    list-style: none;
    padding: 0;
    margin: 1.4rem 0 0;
    display: grid;
    gap: 0.95rem;
}

.principle-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.8rem;
    align-items: start;
    color: rgba(226, 232, 240, 0.9);
    line-height: 1.65;
}

.principle-list-inverse li {
    color: rgba(226, 232, 240, 0.9);
}

.principle-note {
    margin-top: 1.4rem;
    padding: 1rem 1.05rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(226, 232, 240, 0.9);
    line-height: 1.7;
}

.workflow-stage {
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.16), transparent 22%),
        linear-gradient(180deg, #0b1324, #0f172a 58%, #101b30);
}

.workflow-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.workflow-window {
    border-radius: 1.75rem;
    padding: 1.25rem;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: 0 28px 60px rgba(2, 6, 23, 0.28);
}

.workflow-window-bar {
    display: flex;
    gap: 0.45rem;
    margin-bottom: 1rem;
}

.window-dot {
    display: inline-block;
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 999px;
}

.workflow-pane {
    display: grid;
    gap: 1rem;
}

.workflow-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 1.1rem;
    background: rgba(51, 65, 85, 0.44);
}

.workflow-avatar {
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.18);
    border: 1px solid rgba(129, 140, 248, 0.2);
}

.workflow-profile-copy {
    display: grid;
    gap: 0.2rem;
    margin-right: auto;
}

.workflow-profile-copy strong {
    color: var(--white);
}

.workflow-profile-copy span {
    color: rgba(203, 213, 225, 0.8);
    font-size: 0.9rem;
}

.workflow-chat {
    padding: 1rem;
    border-radius: 1.1rem;
    background: rgba(8, 15, 31, 0.86);
    border: 1px solid rgba(71, 85, 105, 0.5);
}

.workflow-chat-label {
    margin-bottom: 0.9rem;
    color: rgba(148, 163, 184, 0.72);
    font-size: 0.8rem;
}

.timeline-list {
    display: grid;
    gap: 1rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    padding: 1.1rem 1.2rem;
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(148, 163, 184, 0.12);
}

.timeline-index {
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.18);
    border: 1px solid rgba(96, 165, 250, 0.22);
    color: #93c5fd;
    font-size: 0.95rem;
    font-weight: 800;
}

.timeline-copy h3 {
    margin: 0;
    color: var(--white);
    font-size: 1.15rem;
}

.timeline-copy p {
    margin: 0.5rem 0 0;
    color: rgba(203, 213, 225, 0.82);
    line-height: 1.72;
}

.pricing-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
}

.pricing-card {
    position: relative;
    display: flex;
    min-height: 32rem;
    flex-direction: column;
    padding: 1rem;
    border-radius: 0.9rem;
    border: 1px solid rgba(226, 232, 240, 0.78);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.88)),
        linear-gradient(135deg, rgba(37, 99, 235, 0.07), rgba(255, 255, 255, 0));
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.055);
}

.pricing-card h3 {
    margin: 0.2rem 0 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 1.1rem;
    line-height: 1.35;
}

.pricing-card-muted {
    background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.pricing-card-featured {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.88)),
        linear-gradient(135deg, rgba(16, 185, 129, 0.07), rgba(255, 255, 255, 0));
}

.pricing-card-free {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.88)),
        linear-gradient(135deg, rgba(100, 116, 139, 0.07), rgba(255, 255, 255, 0));
}

.pricing-card-indigo {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.88)),
        linear-gradient(135deg, rgba(79, 70, 229, 0.08), rgba(255, 255, 255, 0));
}

.pricing-card-emerald {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.88)),
        linear-gradient(135deg, rgba(16, 185, 129, 0.07), rgba(255, 255, 255, 0));
}

.pricing-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}

.pricing-kicker {
    color: var(--slate-400);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pricing-card-copy {
    display: -webkit-box;
    min-height: 2.5rem;
    margin: 0.25rem 0 0;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: var(--slate-500);
    font-size: 0.9rem;
    line-height: 1.45;
}

.pricing-pill {
    display: inline-flex;
    height: 1.75rem;
    flex-shrink: 0;
    align-items: center;
    gap: 0.35rem;
    white-space: nowrap;
    border-radius: 999px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    background: rgba(255, 255, 255, 0.82);
    padding: 0 0.65rem;
    color: var(--slate-600);
    font-size: 0.78rem;
    font-weight: 700;
}

.pricing-price {
    margin: 0;
    color: var(--slate-900);
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.15;
}

.pricing-price-box {
    margin-top: 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(226, 232, 240, 0.8);
    background: rgba(255, 255, 255, 0.72);
    padding: 0.85rem;
}

.pricing-price-featured {
    color: var(--blue-600);
}

.pricing-subtitle {
    margin-top: 0.3rem;
    color: var(--slate-500);
    font-size: 0.88rem;
    line-height: 1.45;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0.85rem 0 1.25rem;
    display: grid;
    gap: 0.5rem;
}

.pricing-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(226, 232, 240, 0.7);
    background: rgba(255, 255, 255, 0.72);
    padding: 0.55rem 0.7rem;
    color: var(--slate-700);
    font-size: 0.88rem;
    line-height: 1.45;
}

.pricing-list-muted li {
    color: var(--slate-500);
}

.pricing-feature-list .is-cross {
    color: var(--slate-400);
}

.pricing-feature-icon {
    display: inline-flex;
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    margin-top: 0.13rem;
    border-radius: 999px;
}

.pricing-feature-list .is-check .pricing-feature-icon {
    background: rgba(16, 185, 129, 0.08);
    color: var(--emerald-500);
    box-shadow: inset 0 0 0 1px rgba(16, 185, 129, 0.16);
}

.pricing-feature-list .is-cross .pricing-feature-icon {
    background: rgba(241, 245, 249, 0.9);
    color: var(--slate-400);
    box-shadow: inset 0 0 0 1px rgba(226, 232, 240, 0.95);
}

.pricing-button {
    width: 100%;
    min-height: 2.5rem;
    margin-top: auto;
    border-radius: 0.75rem;
    font-size: 0.92rem;
}

.guarantee-banner {
    margin-top: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.15rem;
    border-radius: 1rem;
    background: rgba(37, 99, 235, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.14);
    color: var(--slate-700);
    line-height: 1.65;
}

.cta-stage {
    scroll-margin-top: 4.75rem;
    background:
        radial-gradient(circle at 10% 0%, rgba(37, 99, 235, 0.18), transparent 22%),
        linear-gradient(180deg, #0f172a, #111c31);
}

.cta-shell {
    display: grid;
    gap: 1.25rem;
    padding: 1.4rem;
    border-radius: 2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(15, 23, 42, 0.2));
    border: 1px solid rgba(148, 163, 184, 0.14);
    box-shadow: 0 30px 80px rgba(2, 6, 23, 0.28);
}

.cta-copy {
    padding: 0.75rem 0.25rem;
}

.cta-form-shell {
    padding: 1.35rem;
    border-radius: 1.5rem;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    border: 1px solid rgba(226, 232, 240, 0.88);
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.12);
}

.cta-form {
    display: grid;
    gap: 1rem;
}

.cta-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.field-group {
    display: grid;
    gap: 0.45rem;
}

.field-label {
    color: var(--slate-700);
    font-size: 0.92rem;
    font-weight: 700;
}

.field-wrap {
    position: relative;
}

.field-icon {
    position: absolute;
    left: 0.95rem;
    top: 50%;
    transform: translateY(-50%);
}

.field-control {
    width: 100%;
    min-height: 3.4rem;
    padding: 0 1rem 0 2.85rem;
    border-radius: 1rem;
    border: 1px solid rgba(203, 213, 225, 0.95);
    background: rgba(248, 250, 252, 0.92);
    color: var(--slate-900);
}

.field-control:focus {
    outline: none;
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}

.cta-submit {
    width: 100%;
    margin-top: 0.35rem;
}

.cta-submit:disabled {
    cursor: wait;
    opacity: 0.72;
}

.cta-error-message {
    margin: 0;
    padding: 0.75rem 0.9rem;
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 0.8rem;
    background: rgba(254, 226, 226, 0.65);
    color: #b91c1c;
    font-size: 0.86rem;
    line-height: 1.5;
    text-align: center;
}

.cta-caption {
    margin: 0.1rem 0 0;
    text-align: center;
    font-size: 0.82rem;
    color: var(--slate-500);
}

.success-icon-wrap {
    width: 4rem;
    height: 4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--emerald-100);
}

.marketing-footer {
    padding: 2.5rem 0 1.6rem;
    background: #0a1222;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.footer-inner,
.footer-meta {
    color: rgba(148, 163, 184, 0.88);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    justify-content: space-between;
}

.brand-lockup-footer {
    color: var(--white);
}

.footer-copy {
    margin: 0.9rem 0 0;
    max-width: 30rem;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.4rem;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-meta {
    margin-top: 1.5rem;
    font-size: 0.82rem;
}

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

    .nav-inner {
        gap: 0.8rem;
    }

    .nav-actions {
        gap: 0.65rem;
        flex-shrink: 0;
    }

    .nav-actions .button-link,
    .nav-actions .button-small {
        white-space: nowrap;
    }

    .nav-actions .button-small {
        padding: 0 0.8rem;
    }

    .trust-feed-shell .live-feed-pill {
        justify-content: flex-start;
        border-radius: 1rem;
    }

    .hero-stage {
        padding-top: 7rem;
    }

    .hero-title {
        font-size: 1.9rem;
    }

    .hero-actions .button-primary,
    .hero-actions .button-secondary {
        width: 100%;
    }

    .proof-panel-top,
    .workflow-profile {
        flex-direction: column;
        align-items: flex-start;
    }

    .proof-scoreboard {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        grid-template-columns: 1fr;
    }

    .timeline-index {
        width: 2.6rem;
        height: 2.6rem;
    }
}

@media (min-width: 640px) {
    .section-shell {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .hero-metrics {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

@media (min-width: 768px) {
    .feature-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .pricing-grid,
    .cta-shell {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-inner {
        flex-direction: row;
        align-items: center;
    }
}

@media (min-width: 1180px) {
    .pricing-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .section-shell {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .hero-grid,
    .workflow-grid {
        grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    }

    .solution-layout {
        grid-template-columns: minmax(0, 1.2fr) minmax(20rem, 0.8fr);
        align-items: start;
    }

    .trust-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}


/* ============================================
   WeCom Floating Widget
   ============================================ */

.wecom-widget {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.wecom-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: #fff;
    border: none;
    border-radius: 999px;
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.28);
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-family: var(--font-sans);
}

.wecom-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 48px rgba(37, 99, 235, 0.38);
}

.wecom-toggle:active {
    transform: scale(0.97);
}

.wecom-toggle-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    color: #fff;
}

.wecom-toggle-label {
    line-height: 1;
    letter-spacing: 0.02em;
}

.wecom-popup {
    position: absolute;
    bottom: 72px;
    right: 0;
    width: 280px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    animation: wecomFadeIn 0.25s ease;
    font-family: var(--font-sans);
}

@keyframes wecomFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.wecom-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px 12px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-bottom: 1px solid #e2e8f0;
}

.wecom-popup-title {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: 0.01em;
}

.wecom-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: #94a3b8;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
}

.wecom-close:hover {

.wecom-close-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

    background: #e2e8f0;
    color: #334155;
}

.wecom-qr-wrap {
    padding: 24px 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wecom-qr-img {
    width: 200px;
    height: 200px;
    border-radius: 10px;
    border: 1px solid #f1f5f9;
}

.wecom-popup-hint {
    padding: 0 20px 20px;
    text-align: center;
    font-size: 13px;
    color: #64748b;
    letter-spacing: 0.02em;
}

.wecom-popup.hidden {
    display: none;
}

/* ============================================
   Data Base Section
   ============================================ */

.data-base-stage {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.data-base-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.data-base-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.data-base-card .surface-icon {
    margin: 0 auto 1.25rem;
}

.data-base-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid #e2e8f0;
}

.data-base-stat {
    text-align: center;
    padding: 1.25rem 0.75rem;
}

.data-base-stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.data-base-stat-label {
    display: block;
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 0.35rem;
    letter-spacing: 0.01em;
}

@media (min-width: 640px) {
    .data-base-stats {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 2rem;
    }

    .data-base-stat-value {
        font-size: 2rem;
    }
}

@media (min-width: 768px) {
    .data-base-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
