:root {
    /* Light / White Theme */
    --bg-dark: #ffffff;
    --bg-surface: #f4f6f8;
    --bg-panel: rgba(0, 0, 0, 0.025);

    --text-main: #0a0a0a;
    --text-muted: #5e6470;

    --accent-primary: #0F9ABB;
    --accent-secondary: #76DC00;
    --accent-tertiary: #0F9ABB;

    --glass-border: rgba(0, 0, 0, 0.08);
    --glass-border-hover: rgba(15, 154, 187, 0.3);

    --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.08);

    --transition-snappy: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    cursor: auto;
}

a, button, [role="button"], .nav-toggle, .oia-card, .faq-question {
    cursor: pointer;
}

/* ─── Custom Cursor: White Arrow ────────────────── */
.cursor-arrow { display: none; }
.cursor-arrow.hover { display: none; }


body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
}

/* Typography Overhaul */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.section-title {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
}

h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }

p {
    color: var(--text-muted);
    font-size: 1.125rem;
    font-weight: 400;
}

.text-gradient {
    background: linear-gradient(135deg, #0676A8 0%, #0F9ABB 45%, #76DC00 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* A more colorful gradient for emphasis if needed */
.text-gradient-color {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.highlight {
    color: #0F9ABB;
    font-weight: 700;
}

.subtext {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.text-center { text-align: center; margin-inline: auto; }
.mt-4 { margin-top: 2rem; }
.mt-2 { margin-top: 1rem; }

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-spacing {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.section-header {
    margin-bottom: 56px;
    max-width: 800px;
}

.section-subtitle {
    font-size: 1.25rem;
    margin-top: 1.5rem;
}

/* Ambient Background Glows */
.ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.08;
}
.glow-1 {
    top: -20%; left: -10%;
    width: 600px; height: 600px;
    background: #0F9ABB;
}
.glow-2 {
    bottom: -20%; right: -10%;
    width: 500px; height: 500px;
    background: #76DC00;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    color: #000;
    background-color: var(--text-main);
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-snappy);
    border: 1px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
    background-color: #fff;
}

/* Modern Glass Panels */
.glass-panel {
    background: #ffffff;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    position: relative;
    transition: transform var(--transition-snappy), border-color var(--transition-snappy), box-shadow var(--transition-snappy);
}

.glass-panel:hover {
    border-color: rgba(15, 154, 187, 0.3);
    box-shadow: 0 12px 32px rgba(15, 154, 187, 0.12);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    height: 60px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 100px;
    padding: 0 40px;
    z-index: 100;
    width: 90%;
    max-width: 1200px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform var(--transition-snappy);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
}

.nav-logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.logo-icon {
    font-size: 1.25rem;
    color: #0F9ABB;
}

.nav-links {
    display: flex;
    gap: 32px;
}

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

.nav-links a:hover {
    color: #0F9ABB;
}

.nav-cta.text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.5rem 1.25rem;
    background: #0F9ABB;
    color: #fff !important;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    border-radius: 100px;
    white-space: nowrap;
    transition: background var(--transition-snappy), box-shadow var(--transition-snappy), transform var(--transition-snappy);
    box-shadow: 0 0 16px rgba(15,154,187,0.3);
}

.nav-cta.text-link:hover {
    background: #0d87a3;
    box-shadow: 0 4px 20px rgba(15,154,187,0.45);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
}

/* Hero Scroll Wrapper — gives the sticky hero scroll travel for the frame animation */
#hero-scroll-wrapper {
    position: relative;
    height: 400vh;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 60px;
    padding-bottom: 20px;
    background:
        radial-gradient(ellipse at 15% 50%, rgba(15,154,187,0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 80%, rgba(118,220,0,0.08) 0%, transparent 45%),
        radial-gradient(ellipse at 60% 10%, rgba(15,154,187,0.06) 0%, transparent 40%),
        #ffffff;
}

.hero::before {
    display: none;
}

/* ─── Hero Filler Decorations ───────────────────────── */
.hero-filler {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}


/* Floating Background Objects */
.floating-objects {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 2; /* above grid mask, below content */
    pointer-events: none;
}

.float-obj {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    filter: blur(10px);
    animation: floatAnim 20s infinite ease-in-out alternate;
}

.obj-1 {
    width: 400px;
    height: 400px;
    top: 5%;
    left: 10%;
    animation-duration: 25s;
}

.obj-2 {
    width: 300px;
    height: 300px;
    bottom: -5%;
    right: 15%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 60%);
    animation-duration: 18s;
    animation-delay: -5s;
}

.obj-3 {
    width: 200px;
    height: 200px;
    top: 35%;
    left: 45%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 60%);
    animation-duration: 22s;
    animation-delay: -10s;
}

@keyframes floatAnim {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(60px, -40px) scale(1.1); }
    66% { transform: translate(-40px, 50px) scale(0.95); }
    100% { transform: translate(30px, 30px) scale(1.05); }
}

.hero-container {
    position: relative;
    z-index: 10;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Hero has no right visual — use full width, left-aligned like other sections */
#hero .hero-container {
    grid-template-columns: 1fr;
    max-width: 1200px;
    justify-items: start;
}

.hero-content-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
    z-index: 10;
    max-width: 100%;
}

.eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0F9ABB;
    margin-bottom: 1.25rem;
}

.eyebrow.left {
    justify-content: flex-start;
    margin-bottom: 1.5rem;
}

.eyebrow-line {
    display: inline-block;
    width: 28px;
    height: 2px;
    background: #0F9ABB;
    border-radius: 2px;
    flex-shrink: 0;
}

/* keep .badge as alias for backwards compat with glow-pulse */
.badge { display: none; }

@keyframes softGlowPulse {
    0%, 100% { text-shadow: 0 0 10px rgba(15, 154, 187, 0.08); }
    50% { text-shadow: 0 0 20px rgba(15, 154, 187, 0.18); }
}

.glow-pulse {
    animation: softGlowPulse 4s ease-in-out infinite;
    position: relative;
    z-index: 10;
}

.hero-title {
    margin-bottom: 1.5rem;
    font-size: clamp(3rem, 4.5vw, 4rem); /* Slightly tighter lock on large screens */
    white-space: nowrap;
}

.hero-subtitle {
    margin: 0 0 3rem 0;
    font-size: 1.25rem;
    max-width: 480px; /* Keep subtitle solidly wrapped so it stays extremely far from robot */
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-item .highlight {
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(15, 154, 187, 0.3);
}


.hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-item .highlight {
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(15, 154, 187, 0.3);
}

/* How It Works Layer */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.timeline-card {
    display: flex;
    gap: 24px;
    margin-bottom: 48px;
    position: relative;
}

.timeline-card:last-child { margin-bottom: 0; }

.step-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(15, 154, 187, 0.08);
    border: 1px solid rgba(15, 154, 187, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #0F9ABB;
    z-index: 2;
}

/* Line connecting steps */
.steps-container {
    position: relative;
}
.steps-container::before {
    content: '';
    position: absolute;
    top: 24px; left: 24px; bottom: 24px;
    width: 1px;
    background: var(--glass-border);
    z-index: 1;
}

.step-content h3 {
    margin-bottom: 8px;
}
.step-content p {
    font-size: 1.05rem;
}

.video-container {
    height: 500px;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1589254065878-42c9da997008?q=80&w=2070&auto=format&fit=crop'); 
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.video-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}

.play-btn {
    position: relative;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    z-index: 2;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition-snappy);
    padding-left: 5px; 
}

.play-btn:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.2);
}

.video-caption {
    position: absolute;
    bottom: 30px;
    font-weight: 600;
    color: #fff;
    z-index: 2;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

/* Capabilities section */
.dark-alt {
    background: linear-gradient(to bottom, #ffffff 0%, #f0f4f6 8%, #f0f4f6 92%, #ffffff 100%);
}


.cap-eyebrow { display: none; }
.cap-line { display: none; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.feature-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 30px 28px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
    transition: transform var(--transition-snappy), border-color var(--transition-snappy), box-shadow var(--transition-snappy);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(15, 154, 187, 0.3);
    box-shadow: 0 16px 36px rgba(15, 154, 187, 0.12);
}



/* Uniform feature cards */

.cap-card-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(15, 154, 187, 0.2);
    letter-spacing: 0.05em;
}

.feature-icon-wrapper {
    width: 52px;
    height: 52px;
    background: #eaf6f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: #0F9ABB;
    margin-bottom: 20px;
    border: none;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
    line-height: 1.3;
}

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

/* Demos */
.demos-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.demo-card {
    display: flex;
    flex-direction: column;
}

.demo-image {
    height: 300px;
    border-radius: 24px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    background-image: url('https://images.unsplash.com/photo-1531746790731-6c087fecd65a?q=80&w=2006&auto=format&fit=crop'); 
    background-size: cover;
    background-position: center;
}

.demo-card:nth-child(2) .demo-image { background-image: url('https://images.unsplash.com/photo-1485686531765-a80a47f4a284?q=80&w=2040&auto=format&fit=crop'); }
.demo-card:nth-child(3) .demo-image { background-image: url('https://images.unsplash.com/photo-1563206767-5b18f218e8de?q=80&w=2069&auto=format&fit=crop'); }

.image-overlay {
    position: absolute;
    inset: 0;
    transition: var(--transition-snappy);
}

.demo-badge {
    position: absolute;
    top: 20px; left: 20px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid var(--glass-border);
}

.demo-content h4 { font-size: 1.35rem; }

.demo-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-primary);
    margin-bottom: 6px;
}

/* CTA Section */
.cta-card {
    padding: 100px 40px;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 32px;
    background: linear-gradient(180deg, #ffffff 0%, #f0f8fb 100%);
}

.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    padding: 1px;
    background: linear-gradient(180deg, var(--glass-border-hover), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

/* CTA Form */
.cta-respond-note {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 1.5rem 0 1.25rem;
}

.cta-form {
    display: flex;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.cta-input-wrapper {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1.5px solid rgba(0, 0, 0, 0.12);
    border-radius: 100px;
    padding: 6px 6px 6px 24px;
    gap: 8px;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: border-color var(--transition-snappy), box-shadow var(--transition-snappy);
}

.cta-input-wrapper:focus-within {
    border-color: rgba(15, 154, 187, 0.6);
    box-shadow: 0 0 0 3px rgba(15, 154, 187, 0.1);
}

.cta-email-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-size: 0.95rem;
    color: #0a0a0a;
    font-family: 'Outfit', sans-serif;
    min-width: 0;
}

.cta-email-input::placeholder {
    color: #9ea3ad;
}

.cta-submit-btn {
    flex-shrink: 0;
    background: #0F9ABB;
    color: #ffffff;
    border: none;
    border-radius: 100px;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: var(--transition-snappy);
    white-space: nowrap;
}

.cta-submit-btn:hover {
    background: #0d87a3;
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(15, 154, 187, 0.35);
}

@media (max-width: 600px) {
    .cta-input-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        border-radius: 0;
        max-width: 100%;
    }
    .cta-email-input {
        background: #ffffff;
        border: 1.5px solid rgba(0, 0, 0, 0.12);
        border-radius: 14px;
        padding: 14px 18px;
        font-size: 0.95rem;
        width: 100%;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }
    .cta-input-wrapper:focus-within {
        border-color: transparent;
        box-shadow: none;
    }
    .cta-submit-btn {
        width: 100%;
        border-radius: 14px;
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
        text-align: center;
    }
}

/* Footer */
/* FAQ Section */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    background: rgba(255,255,255,0.04);
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item.open {
    border-color: rgba(15,154,187,0.4);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s;
}

.faq-question:hover { color: #0F9ABB; }

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #0F9ABB;
    transition: transform 0.3s;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 0.95rem;
    padding-bottom: 20px;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}
/* End FAQ Section */

.footer {
    padding: 32px 0 20px;
    position: relative;
    background: linear-gradient(to bottom, #ffffff 0%, #f0f4f6 20%);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1rem;
}

.footer-logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
}

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

.footer-bottom {
    padding-top: 16px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.82rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-bottom-links a {
    color: var(--accent-primary);
    font-size: 0.82rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: #0d87a3;
}

/* Animations Elements */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Slide from left */
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

/* Slide from right */
.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Scale up */
.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Blur reveal */
.reveal-blur {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(20px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), filter 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-blur.active {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

.fade-in { animation: fadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.fade-up { opacity: 0; animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

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

/* ─── Hero Stats Bar ────────────────────────────────── */
.hero-stats-bar {
    display: flex;
    align-items: stretch;
    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 18px;
    backdrop-filter: blur(20px);
    overflow: hidden;
    max-width: 100%;
}

.hero-stat-item {
    flex: 1;
    padding: 16px 28px;
    text-align: center;
    min-width: 0;
}

.hero-stat-num {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    font-weight: 800;
    color: #0F9ABB;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #5e6470;
    margin-top: 4px;
}

@media (max-width: 480px) {
    .hero-stats-bar { border-radius: 14px; }
    .hero-stat-item { padding: 12px 14px; }
    .hero-stat-num { font-size: 1.1rem; }
    .hero-stat-label { font-size: 0.58rem; letter-spacing: 0.06em; }
}

/* ─── Prevent horizontal scroll from slide animations ── */
body { overflow-x: hidden; }

/* ─── Responsive ────────────────────────────────────── */

/* Tablet landscape — 992px */
@media (max-width: 992px) {
    .section-spacing { padding: 60px 0; }

    /* Navbar */
    .nav-toggle { display: block; }
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.97);
        border: 1px solid rgba(0,0,0,0.08);
        border-radius: 20px;
        padding: 20px;
        flex-direction: column;
        gap: 15px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.10);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: var(--transition-snappy);
    }
    .nav-links.active { opacity: 1; visibility: visible; transform: translateY(0); }
    .nav-cta.text-link { display: none; }

    /* Split-section grids → single column */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    .hero-content-left { align-items: flex-start; text-align: left; }
    .hero-title { white-space: normal; }
    .hero-subtitle { margin: 0 0 2rem 0; }
    .hero-stats { gap: 20px; justify-content: flex-start; }

    .object-title { text-align: left; white-space: normal; }
    .object-subtitle { text-align: left; margin: 1.25rem 0 2rem 0; max-width: 100%; }
    .feature-list { align-items: flex-start; }
    .eyebrow.left { justify-content: flex-start; }

    /* Precision Depth: show text before video on mobile */
    #precision-depth .hero-content-left { order: -1; }

    .split-layout { grid-template-columns: 1fr; gap: 48px; }

    /* Capabilities — collapse bento to 2-col at tablet */
    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

    .oia-grid { grid-template-columns: repeat(2, 1fr); }
    .hiw-grid { grid-template-columns: 1fr; gap: 16px; }
    .hiw-arrow { display: none; }
    .hiw-panel { grid-template-columns: 1fr; gap: 36px; padding: 40px 32px; }
    .demos-carousel { grid-template-columns: 1fr; }


    /* Footer */
    .footer-content { flex-direction: column; gap: 32px; text-align: center; }
    .footer-links { justify-content: center; flex-wrap: wrap; }
}

/* Tablet portrait — 768px */
@media (max-width: 768px) {
    .section-spacing { padding: 44px 0; }
    .section-title { font-size: clamp(1.75rem, 6vw, 2.25rem); }
    .section-subtitle { font-size: 1rem; margin-top: 1rem; }

    /* Capabilities — single column, horizontal icon-left layout (all cards) */
    .features-grid { grid-template-columns: 1fr; gap: 12px; }
    .feature-card {
        display: grid;
        grid-template-columns: 48px 1fr;
        grid-template-rows: auto auto;
        column-gap: 16px;
        row-gap: 4px;
        align-items: start;
        padding: 20px 20px;
        grid-column: auto;
    }
    .feature-card .feature-icon-wrapper {
        grid-column: 1;
        grid-row: 1 / 3;
        align-self: center;
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
        margin-bottom: 0;
    }
    .feature-card h3 {
        grid-column: 2;
        grid-row: 1;
        align-self: end;
        margin-bottom: 4px;
        text-align: left;
    }
    .feature-card p {
        grid-column: 2;
        grid-row: 2;
        align-self: start;
        margin-bottom: 0;
        text-align: left;
    }

    .oia-grid { grid-template-columns: 1fr; }
    .hiw-grid { grid-template-columns: 1fr; }

    .cta-card { padding: 56px 24px; }
    .hiw-panel { padding: 32px 20px; }

    .object-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }

    /* Slide animations → simple fade-up on mobile to avoid overflow */
    .reveal-left, .reveal-right {
        transform: translateY(24px);
    }
    .reveal-left.active, .reveal-right.active {
        transform: translateY(0);
    }
}

/* Large phone — 576px */
@media (max-width: 576px) {
    .section-spacing { padding: 36px 0; }
    .navbar { padding: 0 20px; top: 12px; }
    .nav-logo { font-size: 0.95rem; }

    .hero-container { gap: 36px; }

    /* Hero stats bar — stack to 2 columns */
    .fade-up[style*="inline-flex"] {
        flex-wrap: wrap;
        border-radius: 16px;
        width: 100%;
        max-width: 340px;
    }

    .object-title { font-size: clamp(1.5rem, 7vw, 2rem); white-space: normal; }
    .section-title { font-size: clamp(1.5rem, 7vw, 2rem); }

    .hiw-card { padding: 28px 20px; }
    .feature-card { padding: 24px 20px; }

    .cta-card { padding: 40px 20px; border-radius: 20px; }
    .cta-input-wrapper { flex-direction: column; align-items: stretch; gap: 10px; background: transparent; border: none; box-shadow: none; padding: 0; border-radius: 0; max-width: 100%; }
    .cta-email-input   { background: #ffffff; border: 1.5px solid rgba(0,0,0,0.12); border-radius: 14px; padding: 14px 18px; width: 100%; }
    .cta-submit-btn    { border-radius: 14px; text-align: center; width: 100%; padding: 0.9rem 1rem; }

    .footer { padding: 56px 0 32px; }
    .footer-links { gap: 20px; }

    .oia-card-body { padding: 18px 18px 22px; }
}

/* Small phone — 400px */
@media (max-width: 400px) {
    .section-spacing { padding: 30px 0; }
    .container { width: 94%; }
    .section-title { font-size: 1.5rem; }
    .object-title { font-size: 1.4rem; }
    .hiw-panel { padding: 24px 16px; }
    .feature-card { padding: 20px 16px; }
    .cta-card { padding: 32px 16px; }
}

/* Fix: non-hero split section layout on tablet/mobile */
@media (max-width: 992px) {
    .container.hero-container {
        grid-template-columns: 1fr;
        gap: 36px;
        padding-top: 0 !important;
    }
    .object-visual { width: 100% !important; }
    .hero-content-left { max-width: 100%; }
}

/* Object Intelligence Section Enhancements */
.object-title {
    text-align: left;
    margin-bottom: 1.25rem;
    font-size: clamp(2rem, 3vw, 3rem); /* Slightly reduced font size */
    white-space: nowrap; /* Forces exactly two lines */
    line-height: 1.2;
}

.object-subtitle {
    text-align: left;
    margin-bottom: 2.5rem;
    font-size: 0.9rem; /* Decreased for better visual balance */
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 500px;
}

.feature-list {
    list-style: none; /* Removes bullet points */
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 0.95rem;
    color: var(--text-main);
}

.feature-list-cards {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-list-cards li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1rem;
    color: var(--text-main);
    padding: 12px 20px;
    background: rgba(15, 154, 187, 0.04);
    border: 1px solid rgba(15, 154, 187, 0.1);
    border-radius: 16px;
    transition: var(--transition-snappy);
    cursor: default;
}

.feature-list-cards li:hover {
    background: rgba(15, 154, 187, 0.08);
    border-color: rgba(15, 154, 187, 0.2);
    transform: translateX(5px);
}

.icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-main);
    font-size: 0.85rem;
}

/* Premium Video Placeholder */
.premium-video-placeholder {
    width: 100%;
    height: 460px;
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(40, 40, 50, 0.5) 0%, rgba(10, 10, 15, 0.9) 100%);
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.8), 0 20px 40px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    cursor: pointer;
    transition: transform var(--transition-snappy), box-shadow var(--transition-snappy);
    border: 1px solid var(--glass-border);
}

.premium-video-placeholder:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), inset 0 0 50px rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.15);
}

.play-button-glow {
    position: absolute;
    width: 90px;
    height: 90px;
    background: var(--text-main);
    border-radius: 50%;
    filter: blur(25px);
    opacity: 0.15;
    transition: opacity var(--transition-snappy);
    animation: glow-pulse 2s infinite alternate;
}

.premium-video-placeholder:hover .play-button-glow {
    opacity: 0.4;
}

.play-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--text-main);
    position: relative;
    z-index: 2;
    padding-left: 6px;
    transition: background var(--transition-snappy), transform var(--transition-snappy);
}

.premium-video-placeholder:hover .play-icon {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.video-overlay-text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    position: relative;
    z-index: 2;
    transition: color var(--transition-snappy);
}

.premium-video-placeholder:hover .video-overlay-text {
    color: var(--text-main);
}

/* ─── Object Intelligence in Action ─────────────────── */
#oia {
    background: linear-gradient(to bottom, #ffffff 0%, #f0f4f6 8%, #f0f4f6 92%, #ffffff 100%);
    position: relative;
}

#oia::before {
    content: '';
    position: absolute;
    top: -200px; left: 50%;
    transform: translateX(-50%);
    width: 700px; height: 400px;
    background: radial-gradient(ellipse at center, rgba(15, 154, 187, 0.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

#oia .container { position: relative; z-index: 1; }

.oia-eyebrow { display: none; }
.oia-line { display: none; }

/* ─── How It Works ─────────────────────────────────── */
.hiw-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
    align-items: stretch;
}

.hiw-step-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.hiw-line {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #0F9ABB;
    border-radius: 2px;
}

.hiw-layer-name {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0F9ABB;
}

.hiw-card {
    padding: 36px 32px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform var(--transition-snappy), border-color var(--transition-snappy), box-shadow var(--transition-snappy);
}

.hiw-card:hover {
    transform: translateY(-4px);
    border-color: rgba(15, 154, 187, 0.3);
    box-shadow: 0 16px 36px rgba(15, 154, 187, 0.12);
}

.hiw-icon {
    width: 44px;
    height: 44px;
    background: #eaf6f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #0F9ABB;
    margin-bottom: 24px;
    border: none;
}

.hiw-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
}

.hiw-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    flex: 1;
}

.hiw-layer { display: none; }

/* Step 04 Panel */
.hiw-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 40px 48px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
}

.hiw-terminal {
    background: #1a1f2e;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-family: 'Courier New', monospace;
    font-size: 0.82rem;
}

.hiw-terminal-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.dot.red    { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green  { background: #28c840; }

.hiw-terminal-title {
    margin-left: 8px;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: 'Outfit', sans-serif;
}

.hiw-terminal-body {
    padding: 24px 20px;
    line-height: 1.8;
}

.hiw-terminal-body p {
    font-size: 0.82rem;
    color: rgba(161, 161, 166, 0.8);
    margin: 0;
}

.hiw-terminal-body br { line-height: 0.5; }

.t-prompt { color: rgba(161, 161, 166, 0.5); }
.t-success { color: #0F9ABB; }
.t-bracket { color: #76DC00; }
.t-cursor {
    display: inline-block;
    width: 8px;
    height: 14px;
    background: #0F9ABB;
    vertical-align: middle;
    animation: blink 1s step-end infinite;
}

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



.hiw-panel-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.hiw-panel-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
}

@media (max-width: 992px) {
    .hiw-grid { grid-template-columns: 1fr; }
    .hiw-panel { grid-template-columns: 1fr; gap: 40px; padding: 40px 32px; }
}

@media (max-width: 768px) {
    .hiw-panel { padding: 32px 24px; }
}

.oia-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.oia-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: transform var(--transition-snappy), border-color var(--transition-snappy), box-shadow var(--transition-snappy);
}

.oia-card:hover {
    transform: translateY(-5px);
    border-color: rgba(15, 154, 187, 0.3);
    box-shadow: 0 16px 36px rgba(15, 154, 187, 0.12);
}

.oia-card-image {
    position: relative;
    height: 210px;
    background: linear-gradient(135deg, rgba(15, 154, 187, 0.06) 0%, rgba(0,0,0,0.02) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    cursor: pointer;
}

.oia-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.oia-play-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: #0F9ABB;
    padding-left: 4px;
    transition: var(--transition-snappy);
    cursor: pointer;
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.oia-card:hover .oia-play-btn {
    background: rgba(15, 154, 187, 0.15);
    border-color: rgba(15, 154, 187, 0.4);
    color: #0F9ABB;
    transform: scale(1.08);
}

.oia-demo-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    background: rgba(15, 154, 187, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 4px 12px;
    border-radius: 100px;
    border: none;
}

.oia-card-body {
    padding: 24px 24px 28px;
}

.oia-category {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0F9ABB;
    margin-bottom: 8px;
}

.oia-card-body h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 10px;
    line-height: 1.35;
}

.oia-card-body p {
    font-size: 0.875rem;
    color: #5e6470;
    line-height: 1.7;
}

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

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

/* ─── Meet the Team Section ─────────────────────────── */
.team-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f0f4f6 8%, #f0f4f6 92%, #ffffff 100%);
}


/* 4-column grid for 7 members */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin-top: 48px;
}

.team-card {
    flex: 0 0 calc(25% - 14px);
    min-width: 200px;
    max-width: 260px;
}

/* Card */
.team-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.3s cubic-bezier(0.16,1,0.3,1),
                box-shadow 0.3s cubic-bezier(0.16,1,0.3,1);
    display: flex;
    flex-direction: column;
    flex: 0 0 calc(25% - 14px);
    min-width: 200px;
    max-width: 260px;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(15,154,187,0.14);
    border-color: rgba(15,154,187,0.25);
}

/* Colored illustration top */
.team-card-top {
    background: var(--tc, #ddeef7);
    height: 200px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Team photo image */
.team-card-top {
    position: relative;
    perspective: 800px;
}

.team-photo-default {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: top center;
    border-radius: inherit;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* ── CSS Character Illustration ── */
.team-illus {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 0;
}

/* The "screen/laptop" floating on the side */
.ti-screen {
    position: absolute;
    top: 28px;
    right: 18%;
    width: 110px;
    height: 78px;
    background: rgba(255,255,255,0.85);
    border: 1.5px solid rgba(15,154,187,0.35);
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.ti-screen-inner {
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.ti-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.ti-dot.ti-accent { background: #0F9ABB; }

.ti-line {
    height: 3px;
    border-radius: 2px;
    background: rgba(15,154,187,0.45);
    width: 80%;
}
.ti-line.short { width: 55%; background: rgba(15,154,187,0.28); }

/* Person body */
.ti-body {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-60%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Head */
.ti-head {
    position: relative;
    width: 64px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ti-hair {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 36px;
    border-radius: 32px 32px 0 0;
    z-index: 2;
}

.ti-hair-long {
    height: 100%;
    border-radius: 32px 32px 12px 12px;
    z-index: 1;
}

.ti-face {
    width: 52px;
    height: 58px;
    background: #c8a882;
    border-radius: 50% 50% 45% 45%;
    position: relative;
    margin-top: 14px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ti-eye {
    position: absolute;
    width: 7px;
    height: 8px;
    background: #1a0a00;
    border-radius: 50%;
    top: 38%;
}
.ti-eye.left  { left: 22%; }
.ti-eye.right { right: 22%; }

.ti-eye::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    background: #fff;
    border-radius: 50%;
    top: 1px;
    left: 1px;
}

.ti-smile {
    position: absolute;
    bottom: 22%;
    width: 18px;
    height: 8px;
    border-bottom: 2.5px solid rgba(100,60,20,0.6);
    border-radius: 0 0 10px 10px;
    left: 50%;
    transform: translateX(-50%);
}

.ti-ear {
    position: absolute;
    width: 9px;
    height: 13px;
    background: #c8a882;
    border-radius: 50%;
    top: 42%;
    z-index: 2;
}
.ti-ear.left  { left: -3px; }
.ti-ear.right { right: -3px; }

/* Torso */
.ti-torso {
    width: 62px;
    height: 52px;
    border-radius: 12px 12px 0 0;
    position: relative;
    z-index: 2;
}

/* Arms */
.ti-arm {
    position: absolute;
    width: 16px;
    height: 48px;
    border-radius: 8px;
    bottom: 52px;
    z-index: 1;
}
.ti-arm.left  { left: -12px; transform: rotate(8deg); transform-origin: top center; }
.ti-arm.right { right: -12px; transform: rotate(-8deg); transform-origin: top center; }

/* Card bottom text area */
.team-card-body {
    padding: 16px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}

.team-role-label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #0F9ABB;
    display: block;
    margin-bottom: 6px;
}

.team-name {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0a0a0a;
    margin-bottom: 10px;
    line-height: 1.1;
}

.team-bio {
    font-size: 0.88rem;
    color: #5e6470;
    line-height: 1.65;
    margin-bottom: 16px;
}

.team-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
}

.team-tag {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0a0a0a;
    border: 1.5px solid rgba(0,0,0,0.18);
    border-radius: 100px;
    padding: 4px 10px;
    white-space: nowrap;
    transition: border-color 0.2s, color 0.2s;
}

.team-card:hover .team-tag {
    border-color: rgba(15,154,187,0.4);
    color: #0F9ABB;
}

/* Responsive */
@media (max-width: 1024px) {
    .team-card { flex: 0 0 calc(33.333% - 13px); }
}

@media (max-width: 700px) {
    .team-card { flex: 0 0 calc(50% - 10px); max-width: none; }
}

@media (max-width: 480px) {
    .team-section .container { width: 96%; }
    .team-card { flex: 0 0 100%; max-width: 100%; }
    .team-card-top { height: 280px; }
    .team-section-title { font-size: 2rem; }
}

/* ═══════════════════════════════════════════════════
   COMPREHENSIVE MOBILE RESPONSIVE FIXES
   ═══════════════════════════════════════════════════ */

/* ── Mobile nav CTA (hidden on desktop, shown inside dropdown) ── */
.nav-mobile-cta { display: none; }

/* ── Prevent horizontal swipe on mobile without breaking sticky ── */
@media (max-width: 992px) {
    body { touch-action: pan-y; }
}

/* ════════════════════════════════
   TABLET LANDSCAPE — 992px
   ════════════════════════════════ */
@media (max-width: 992px) {
    /* Show CTA inside mobile dropdown */
    .nav-mobile-cta {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        margin-top: 6px;
        padding: 0.65rem 1.25rem;
        background: #0F9ABB;
        color: #fff !important;
        font-weight: 700;
        font-size: 0.88rem;
        border-radius: 100px;
        text-decoration: none;
        width: fit-content;
    }

    /* object-title: allow wrapping */
    .object-title { white-space: normal !important; }
}

/* ════════════════════════════════
   TABLET PORTRAIT — 768px
   ════════════════════════════════ */
@media (max-width: 768px) {

    /* ── Hero: disable scroll animation, act as normal section ── */
    #hero-scroll-wrapper { height: auto !important; }
    #hero {
        position: relative !important;
        height: auto !important;
        min-height: unset;
        padding: 80px 0 24px;
        align-items: flex-start;
        justify-content: flex-start;
    }
    #hero-canvas { display: none !important; }
    #hero .hero-container {
        grid-template-columns: 1fr;
        width: 92%;
        max-width: 100%;
    }
    .hero-title {
        font-size: clamp(2rem, 7.5vw, 2.8rem) !important;
        white-space: normal !important;
        max-width: 100% !important;
        margin-bottom: 1rem;
    }
    .hero-subtitle {
        font-size: 0.97rem !important;
        max-width: 100% !important;
        margin-bottom: 1.75rem;
    }
    /* CTA buttons: stack on mobile */
    .hero-content-left .fade-up[style*="display: flex"] {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 2rem;
    }
    .hero-content-left .fade-up[style*="display: flex"] a {
        width: 100%;
        justify-content: center;
    }
    /* Stats bar: shrink gap */
    .hero-stats { gap: 16px; flex-wrap: nowrap; }
    .stat-item .highlight { font-size: 1.5rem; }
    .stat-item { font-size: 0.78rem; }
    p.fade-up   { max-width: 100% !important; }

    /* Split-section text overflow */
    .object-title   { white-space: normal !important; font-size: clamp(1.6rem, 4vw, 2.2rem); }
    .object-subtitle { font-size: 0.88rem; }
    .container.hero-container { padding-top: 0 !important; }

    /* Section subtitle line-breaks */
    .section-subtitle br { display: none; }

    /* ── FAQ ── */
    .faq-list { gap: 10px; }
    .faq-question { font-size: 0.92rem; padding: 18px 16px; line-height: 1.4; }
    .faq-answer p  { font-size: 0.88rem; }
    .faq-icon      { width: 22px; height: 22px; flex-shrink: 0; }

    /* ── How It Works ── */
    .hiw-card   { padding: 24px 18px; }
    .hiw-panel  { padding: 28px 20px; }
    .hiw-terminal-body  { font-size: 0.75rem; line-height: 1.65; }
    .hiw-terminal-title { font-size: 0.75rem; }

    /* ── Capabilities feature cards ── */
    .feature-card { padding: 24px 20px; }
    .feature-card h3 { font-size: 1.1rem; }
    .feature-card p  { font-size: 0.88rem; }

    /* ── OIA grid already 1-col at 768 — card heights ── */
    .oia-card-image { height: 200px; }
    .oia-card-body h4 { font-size: 1rem; }
    .oia-card-body p  { font-size: 0.85rem; }

    /* ── Team ── */
    .team-card-body { padding: 16px; }
    .team-name  { font-size: 1.15rem; }
    .team-bio   { font-size: 0.85rem; }

    /* ── CTA section ── */
    .cta-card { padding: 48px 24px; }

    /* ── Footer ── */
    .footer-content { flex-direction: column; gap: 24px; text-align: center; }
    .footer-links   { justify-content: center; flex-wrap: wrap; gap: 16px; }
}

/* ════════════════════════════════
   LARGE PHONE — 576px
   ════════════════════════════════ */
@media (max-width: 576px) {

    /* ── Navbar ── */
    .navbar      { width: 94%; padding: 0 18px; top: 10px; height: 54px; }
    .nav-logo-img { height: 28px; }
    .nav-links   { top: 64px; padding: 14px; gap: 2px; border-radius: 16px; }
    .nav-links > a:not(.nav-mobile-cta) {
        padding: 11px 8px;
        font-size: 0.95rem;
        border-bottom: 1px solid rgba(0,0,0,0.06);
        width: 100%;
        display: block;
    }
    .nav-mobile-cta { margin-top: 8px; width: 100%; justify-content: center; }

    /* ── Hero text & layout ── */
    #hero { padding: 72px 0 16px; }
    #hero .hero-container { width: 90%; }
    .hero-title { font-size: clamp(1.85rem, 8vw, 2.6rem) !important; line-height: 1.12 !important; margin-bottom: 0.9rem; }
    .hero-subtitle { font-size: 0.9rem !important; margin-bottom: 1.5rem; }
    .hero-stats { gap: 12px; }
    .stat-item .highlight { font-size: 1.3rem; }
    .stat-item { font-size: 0.72rem; }
    .stat-divider { height: 30px; }
    p.fade-up   { font-size: 0.88rem !important; line-height: 1.65 !important; margin-bottom: 1.75rem !important; }

    /* Hero eyebrow badge */
    #hero .fade-up,
    #hero [style*="inline-flex"][style*="border-radius: 100px"] {
        font-size: 0.68rem;
        padding: 5px 14px;
    }

    /* Hero CTA buttons — stack vertically */
    #hero [style*="flex-wrap"] {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 10px !important;
        margin-bottom: 2rem !important;
    }
    #hero [style*="flex-wrap"] a {
        width: 100% !important;
        justify-content: center !important;
        box-sizing: border-box;
        padding: 0.75rem 1.25rem !important;
        font-size: 0.85rem !important;
    }

    /* Stats bar: all 3 in one row */
    .hero-stats-bar { flex-wrap: nowrap; width: 100%; }
    .hero-stat-item { flex: 1; min-width: 0; padding: 14px 8px; border-right: 1px solid rgba(0,0,0,0.08) !important; }
    .hero-stat-item:last-child { border-right: none !important; }
    .hero-stat-num  { font-size: 1.1rem; }
    .hero-stat-label { font-size: 0.55rem; letter-spacing: 0.06em; }

    /* ── Split sections — remove excessive top padding ── */
    .container.hero-container { gap: 20px; padding-top: 0 !important; }
    #object-intelligence .container,
    #precision-depth .container { padding-top: 0 !important; }
    .object-title    { font-size: clamp(1.4rem, 6vw, 1.8rem); }
    .object-subtitle { font-size: 0.83rem; margin-bottom: 1.5rem; }
    .feature-list li { font-size: 0.85rem; gap: 10px; }

    /* ── OIA cards ── */
    .oia-card-image  { height: 180px; }
    .oia-card-body   { padding: 14px 14px 18px; }
    .oia-card-body h4 { font-size: 0.95rem; }
    .oia-card-body p  { font-size: 0.82rem; }
    .oia-category    { font-size: 0.65rem; }

    /* ── Capabilities ── */
    .features-grid { gap: 10px; }
    .feature-card { padding: 16px 14px; border-radius: 14px; column-gap: 12px; }
    .feature-card .feature-icon-wrapper { width: 40px; height: 40px; font-size: 1rem; }
    .feature-card h3 { font-size: 1rem; }
    .feature-card p  { font-size: 0.83rem; }

    /* ── How It Works ── */
    .hiw-grid { gap: 12px; }
    .hiw-card { padding: 20px 16px; border-radius: 16px; }
    .hiw-card h3 { font-size: 1rem; }
    .hiw-card p  { font-size: 0.83rem; }
    .hiw-panel   { padding: 20px 16px; gap: 20px; }
    .hiw-terminal-body  { font-size: 0.68rem !important; line-height: 1.7; overflow-x: auto; }
    .hiw-terminal-title { font-size: 0.7rem; }

    /* ── FAQ ── */
    .faq-question { font-size: 0.83rem; padding: 14px 12px; gap: 10px; }
    .faq-answer   { padding: 0 12px; }
    .faq-answer p { font-size: 0.8rem; }
    .faq-item     { border-radius: 12px; }

    /* ── Team — single column, full width ── */
    .team-section .container { width: 96%; }
    .team-grid      { gap: 16px; }
    .team-card      { flex: 0 0 100%; max-width: 100%; }
    .team-card-top  { height: 260px; }
    .team-card-body { padding: 18px 18px 20px; }
    .team-name      { font-size: 1.1rem; }
    .team-bio       { font-size: 0.85rem; margin-bottom: 12px; }
    .team-tag       { font-size: 0.62rem; padding: 4px 10px; }
    .team-role-label { font-size: 0.7rem; }

    /* ── CTA section ── */
    .cta-card         { padding: 36px 16px; border-radius: 18px; }
    .cta-input-wrapper { flex-direction: column; align-items: stretch; gap: 10px; background: transparent; border: none; box-shadow: none; padding: 0; border-radius: 0; max-width: 100%; }
    .cta-email-input   { background: #ffffff; border: 1.5px solid rgba(0,0,0,0.12); border-radius: 14px; padding: 13px 16px; font-size: 0.9rem; width: 100%; }
    .cta-submit-btn    { border-radius: 14px; width: 100%; padding: 0.85rem 1rem; font-size: 0.9rem; text-align: center; }

    /* ── Section headers ── */
    .section-header { margin-bottom: 32px; }
    .section-subtitle { font-size: 0.88rem; margin-top: 0.75rem; }

    /* ── Footer ── */
    .footer      { padding: 48px 0 28px; }
    .footer-links { gap: 14px; }
    .footer-bottom { font-size: 0.76rem; flex-direction: column; gap: 8px; text-align: center; }
    .footer-bottom p { font-size: 0.76rem; }
    .footer-bottom-links a { font-size: 0.76rem; }
}

/* ════════════════════════════════
   SMALL PHONE — 400px
   ════════════════════════════════ */
@media (max-width: 400px) {
    .container   { width: 94%; }
    .navbar      { width: 96%; padding: 0 14px; top: 8px; height: 50px; }
    .nav-logo-img { height: 24px; }
    .nav-links   { top: 60px; }

    .section-spacing { padding: 30px 0; }
    .section-title   { font-size: 1.35rem; }
    .section-subtitle { font-size: 0.82rem; }

    .hero-title { font-size: clamp(1.6rem, 9vw, 2rem) !important; }

    .object-title    { font-size: 1.3rem; }
    .object-subtitle { font-size: 0.8rem; }

    .feature-card { padding: 14px 12px; column-gap: 10px; }
    .feature-card .feature-icon-wrapper { width: 36px; height: 36px; font-size: 0.9rem; }
    .hiw-card     { padding: 16px 14px; }
    .cta-card     { padding: 28px 14px; }
    .hiw-panel    { padding: 16px 14px; }

    .faq-question { font-size: 0.8rem; padding: 12px 10px; }
    .faq-answer p { font-size: 0.78rem; }

    .team-card-top  { height: 180px; }
    .team-name      { font-size: 0.95rem; }
    .hero-stats-bar { border-radius: 12px; }
}

/* ════════════════════════════════
   EXTRA SMALL — 360px
   ════════════════════════════════ */
@media (max-width: 360px) {
    .container   { width: 96%; }
    .section-title { font-size: 1.2rem; }
    .hero-title    { font-size: 1.5rem !important; }
    .object-title  { font-size: 1.2rem; }
    .feature-card p, .hiw-card p, .oia-card-body p { font-size: 0.78rem; }
    .team-card-top { height: 160px; }
}
