/* Global Setup & Font Mapping */
@font-face {
    font-family: 'TT Norms Pro';
    src: url('/fonts/tt-norms-pro-regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'TT Norms Pro';
    src: url('/fonts/tt-norms-pro-semibold.woff2') format('woff2');
    font-weight: 500;
}
@font-face {
    font-family: 'TT Norms Pro';
    src: url('/fonts/tt-norms-pro-semibold.woff2') format('woff2');
    font-weight: 600;
    font-display: swap;
}

:root {
    --bg-base: #F5F5F5;
    --bg-surface: #2B2644;
    --text-black: #000000;
    --text-white: #FFFFFF;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: inherit;
    -webkit-font-smoothing: antialiased;
}

html, body {
    font-family: 'TT Norms Pro', sans-serif;
    background-color: var(--bg-base);
    color: var(--text-black);
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar, body::-webkit-scrollbar, *::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.bg-base { background-color: var(--bg-base); }
.h-screen { height: 100vh; }
.flex-col { display: flex; flex-direction: column; }
.overflow-hidden { overflow: hidden; }
.max-w-inner { max-width: 88rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.relative { position: relative; }
.absolute { position: absolute; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }
.flex-1 { flex: 1 1 0%; }
.p-7 { padding: 1.75rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.pt-20 { padding-top: 5rem; }
.pb-6 { padding-bottom: 1.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-24 { margin-bottom: 6rem; }
.max-w-xl { max-width: 36rem; }
.max-w-md { max-width: 28rem; }
.max-w-sm { max-width: 24rem; }
.max-w-xs { max-width: 20rem; }
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-relaxed { line-height: 1.625; }
.font-medium { font-weight: 500; }

.text-black { color: #000000; }
.text-black-70 { color: rgba(0,0,0,0.7); }
.text-black-60 { color: rgba(0,0,0,0.6); }
.text-black-50 { color: rgba(0,0,0,0.5); }
.text-white { color: #FFFFFF; }
.text-white-60 { color: rgba(255,255,255,0.6); }

.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-2xl { font-size: 1.5rem; }
.text-4xl { font-size: 2.25rem; }
.text-huge { font-size: 3rem; }
.hero-title { font-size: 3rem; font-weight: 500; line-height: 1.25; margin-bottom: 1rem; max-width: 36rem; }
.section-title { font-size: 2.25rem; font-weight: 500; line-height: 1.25; }

@media (min-width: 768px) {
    .hero-title { font-size: 3.75rem; }
    .section-title { font-size: 3rem; }
    .text-huge { font-size: 3.75rem; }
    .text-lg { font-size: 1.125rem; }
}

.nav-absolute { position: absolute; top: 0; left: 0; right: 0; z-index: 20; padding: 1.25rem 1.5rem; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-left { display: flex; align-items: center; gap: 0.5rem; }
.logo-icon { width: 1.75rem; height: 1.75rem; color: #00; }
.logo-text { font-size: 1.5rem; font-weight: 500; letter-spacing: -0.025em; color: #000; }
.nav-center { display: none; gap: 2rem; }
@media (min-width: 768px) { .nav-center { display: flex; align-items: center; } }
.nav-link { font-size: 1rem; color: rgba(0,0,0,0.6); font-weight: 500; text-decoration: none; transition: color 0.2s; }
.nav-link:hover { color: #000; }

.btn-pill { background-color: #000; color: #fff; font-size: 1rem; font-weight: 500; padding: 0.625rem 1.75rem; border-radius: 9999px; text-decoration: none; transition: background-color 0.2s; white-space: nowrap; }
.btn-pill:hover { background-color: #1f2937; }
.btn-pill-icon { display: inline-flex; align-items: center; gap: 0.75rem; background-color: #000; color: #fff; font-size: 1.125rem; font-weight: 500; padding: 0.5rem 0.5rem 0.5rem 2rem; border-radius: 9999px; text-decoration: none; transition: background-color 0.2s; }
.btn-pill-icon.btn-sm { font-size: 1rem; }
.btn-pill-icon:hover { background-color: #1f2937; }
.icon-circle { background-color: #fff; color: #00; border-radius: 9999px; padding: 0.5rem; display: flex; align-items: center; justify-content: center; }
.icon-circle-blur { width: 2.25rem; height: 2.25rem; border-radius: 9999px; background-color: rgba(255,255,255,0.8); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; transition: background-color 0.2s; }
.group:hover .icon-circle-blur { background-color: #fff; }

.hero-section { flex: 1 1 0%; padding: 5rem 1.5rem 1.5rem 1.5rem; display: flex; align-items: flex-end; }
.hero-card { position: relative; width: 100%; border-radius: 1rem; overflow: hidden; height: calc(100vh - 96px); }
.bg-video { position: absolute; top: 0; left: 0; right: 0; bottom: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.hero-overlay { position: relative; z-index: 10; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start; height: 100%; padding: 9rem 3rem 3rem 3rem; margin: 0 auto; }

.hero-marquee-container { margin-top: 6rem; width: 100%; max-width: 28rem; overflow: hidden; }
.marquee-container-right { overflow: hidden; width: 100%; }
.marquee-track { display: flex; width: max-content; }
.marquee-item { flex-shrink: 0; white-space: nowrap; }
.hero-track { animation: marquee 22s linear infinite; }
.hero-track .marquee-item { margin-left: 1.75rem; margin-right: 1.75rem; color: rgba(0,0,0,0.6); }
.backers-track { animation: backs-marquee 30s linear infinite; }

@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes backs-marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.grid-2col { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .grid-2col { grid-template-columns: repeat(2, 1fr); gap: 3rem; } }
.grid-4col { display: grid; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-4col { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-4col { grid-template-columns: repeat(4, 1fr); } }
.grid-backed-by { display: grid; grid-template-columns: 1fr; }
@media (min-width: 768px) { .grid-backed-by { grid-template-columns: 1fr 3fr; } }

.card { border-radius: 1rem; padding: 1.75rem; min-height: 20rem; display: flex; }
.card-img { flex-direction: column; justify-content: space-between; }
.card-dark { background-color: var(--bg-surface); }
@media (min-width: 1024px) { .span-2-lg { grid-column: span 2 / span 2; } }
.use-case-card { border-radius: 1.5rem; min-height: 45rem; }
.use-case-overlay { position: relative; z-index: 10; padding: 2.5rem; height: 100%; display: flex; flex-direction: column; }
@media(min-width: 768px){ .use-case-overlay { padding: 3rem; } .md-pr-12 { padding-right: 3rem; } .md-pt-2 { padding-top: 0.5rem; } }
.inline-flex { display: inline-flex; }
.group { text-decoration: none; }