:root {
    --bg: #f4f6fb;
    --bg-strong: #ffffff;
    --ink: #0c1b33;
    --muted: #5b6b86;
    --line: #e1e6ef;
    --primary: #36b9cc;
    --primary-dark: #2a8f9e;
    --accent: #0ea5a4;
    --shadow: 0 24px 60px rgba(12, 27, 51, 0.12);
    --soft-shadow: 0 12px 30px rgba(12, 27, 51, 0.08);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

body.experiment-body {
    font-family: "DM Sans", "Segoe UI", sans-serif;
    color: var(--ink);
    background: radial-gradient(circle at top, #ffffff 0%, #f4f6fb 55%, #eef2f8 100%);
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.grecaptcha-badge {
    position: fixed !important;
    right: 16px !important;
    bottom: 16px !important;
    left: auto !important;
    top: auto !important;
    margin: 0 !important;
    transform: none !important;
    transition: none !important;
    z-index: 9999;
}
.recaptcha-badge-slot {
    display: flex;
    justify-content: flex-end;
    margin-top: 12px;
}
.recaptcha-badge-slot .grecaptcha-badge {
    position: static !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    top: auto !important;
    margin: 0 !important;
    transform: none !important;
    transition: none !important;
    z-index: 1;
}

.recaptcha-badge-anchor {
    position: relative;
}
.recaptcha-badge-anchor .recaptcha-badge-slot {
    position: absolute;
    right: 0;
    bottom: 0;
    margin-top: 0;
    pointer-events: none;
    transform: translate(18%, 22%);
}
.recaptcha-badge-anchor .recaptcha-badge-slot .grecaptcha-badge {
    pointer-events: auto;
}

.recaptcha-badge-slot,
.grecaptcha-badge {
    display: none !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Space Grotesk", "DM Sans", sans-serif;
    color: var(--ink);
}

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

main {
    padding-top: 96px;
    flex: 1 0 auto;
}

.container {
    max-width: 1200px;
}

.container-fluid {
    padding-left: 32px;
    padding-right: 32px;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
}

.typing-line {
    display: block;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0f2a46;
    margin-bottom: 12px;
}

.typing-line .typing-text,
.typing-line .typing-cursor {
    display: inline-block;
}

.typing-cursor {
    display: inline-block;
    width: 8px;
    animation: cursorBlink 1s steps(2, start) infinite;
}

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

.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1200;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 32px;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 24px rgba(12, 27, 51, 0.08);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.brand img {
    height: 32px;
}

.site-nav ul {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav li a {
    font-weight: 500;
    color: var(--muted);
}

.site-nav li.is-active a {
    color: var(--ink);
    font-weight: 600;
}

.site-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.link {
    color: var(--primary);
    font-weight: 600;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 12px 22px;
    font-weight: 600;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 14px 30px rgba(28, 93, 240, 0.28);
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    background: #fff;
    border-color: var(--line);
    color: var(--ink);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    margin-bottom: 5px;
}

.nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: #fff;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    padding: 24px;
    z-index: 1500;
    transition: right 0.3s ease;
}

.nav-drawer.is-open {
    right: 0;
}

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

.nav-close {
    background: none;
    border: none;
    width: 32px;
    height: 32px;
    position: relative;
}

.nav-close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 2px;
    background: var(--ink);
}

.nav-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.nav-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.nav-drawer__body ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 16px;
}

.nav-drawer__body a {
    font-weight: 600;
    color: var(--ink);
}

.nav-drawer__footer {
    margin-top: auto;
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(12, 27, 51, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1400;
}

.nav-backdrop.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero {
    padding: 100px 0 60px;
}

.hero__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: start;
}

@media (max-width: 768px) {
    .hero {
        padding-top: 15px;
    }

    .hero__grid {
        gap: 80px;
    }
}

.hero__copy h1 {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    line-height: 1.1;
    margin: 12px 0 16px;
}

.hero__copy .lead {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 520px;
}

.hero-subline {
    font-size: 1.05rem;
    color: var(--muted);
    margin-bottom: 10px;
    max-width: 560px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    margin: 26px 0 18px;
    flex-wrap: wrap;
}

.micro-proof {
    font-size: 0.95rem;
    color: var(--muted);
}

.hero__visual {
    display: grid;
    gap: 18px;
}

.hero--clean .hero__visual {
    gap: 24px;
}

.visual-card--animated {
    position: relative;
    overflow: hidden;
}

.visual-card--animated::before {
    content: "";
    position: absolute;
    top: -40%;
    left: -60%;
    width: 220%;
    height: 70%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 20%,
        rgba(28, 93, 240, 0.18) 45%,
        rgba(255, 255, 255, 0) 70%
    );
    opacity: 0.6;
    animation: hero-scanline 5s ease-in-out infinite;
    pointer-events: none;
}

.visual-card--animated::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(28, 93, 240, 0.1), transparent 60%);
    pointer-events: none;
}

.flow-row--meta {
    margin-bottom: 18px;
}

.hero__insights {
    display: grid;
    gap: 12px;
}

.insight-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--soft-shadow);
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.insight-card::after,
.industry-card::after,
.use-case-card::after,
.card::after {
    content: "";
    position: absolute;
    top: -40%;
    left: -70%;
    width: 220%;
    height: 70%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 20%,
        rgba(28, 93, 240, 0.08) 45%,
        rgba(255, 255, 255, 0) 70%
    );
    opacity: 0.3;
    animation: card-scan 8s ease-in-out infinite;
    pointer-events: none;
}

.insight-card:hover,
.industry-card:hover,
.use-case-card:hover,
.card:hover {
    transform: translateY(-3px);
    border-color: rgba(28, 93, 240, 0.35);
    box-shadow: 0 18px 34px rgba(28, 93, 240, 0.12);
}

.insight-card i {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #f1f6ff;
    color: var(--primary);
}

.partners--prominent {
    padding-top: 20px;
}

.visual-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(28, 93, 240, 0.1);
}

.visual-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    margin-bottom: 18px;
}

.pill {
    font-size: 0.75rem;
    padding: 4px 10px;
    background: rgba(14, 165, 164, 0.12);
    color: var(--accent);
    border-radius: 999px;
}

.flow-bubble {
    padding: 12px 14px;
    border-radius: 14px;
    max-width: 80%;
    font-size: 0.95rem;
    animation: bubble-float 3.6s ease-in-out infinite;
}

.flow-bubble.is-user {
    background: #e9f0ff;
    color: var(--ink);
    animation-delay: 0.2s;
}

.flow-bubble.is-agent {
    background: #f1f6f8;
    color: var(--ink);
    margin-left: auto;
    animation-delay: 0.5s;
}

.flow-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.flow-step {
    background: #f9fafc;
    border-radius: 14px;
    padding: 12px;
    flex: 1;
    border: 1px solid var(--line);
}

.flow-step span {
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

.flow-tools {
    font-size: 0.82rem;
    color: var(--muted);
    margin-top: 12px;
}

.visual-rail {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
}

.rail-card {
    background: #fff;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid var(--line);
    box-shadow: var(--soft-shadow);
}

.trusted {
    padding: 60px 0;
}

.trusted__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.trusted__logos img {
    width: 100%;
    border-radius: 16px;
    background: #fff;
    padding: 18px;
    border: 1px solid var(--line);
}

.logo-marquee {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--line);
    padding: 18px 0;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 32px;
    animation: marquee 30s linear infinite;
    padding: 0 24px;
    width: max-content;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    min-width: 140px;
    padding: 8px 16px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(12, 27, 51, 0.06);
}

.logo-item img {
    max-height: 42px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.85;
}

.logo-marquee:hover .logo-track {
    animation-play-state: paused;
}

.partners {
    padding: 40px 0 60px;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 18px;
}

.partner-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid var(--line);
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 130px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(12, 27, 51, 0.06);
}

.partners--prominent {
    padding: 70px 0 70px;
}

.partners--prominent .partner-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.partners--prominent .partner-card {
    min-height: 150px;
}

.partners--prominent .partner-card img {
    max-height: 80px;
    max-width: 190px;
}

@media (max-width: 1100px) {
    .partners--prominent .partner-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .partners--prominent .partner-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .partners--prominent .partner-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}
.partner-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(28, 93, 240, 0.08), rgba(14, 165, 164, 0.08));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.partner-card img {
    max-height: 70px;
    max-width: 170px;
    object-fit: contain;
    filter: grayscale(40%);
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.partner-card:hover::before {
    opacity: 0;
}

.cta-inline {
    padding: 20px 0 40px;
}

.cta-inline__inner {
    background: #fff;
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 1px solid var(--line);
}

.section-head {
    margin-bottom: 32px;
}

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

.section-title {
    font-size: clamp(2rem, 3.2vw, 2.6rem);
}
.section-head p {
    color: var(--muted);
}

.card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--line);
    box-shadow: var(--soft-shadow);
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card p {
    color: var(--muted);
}

.pillars {
    position: relative;
}

.pillars::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(28, 93, 240, 0.08), transparent 60%);
    pointer-events: none;
}

.feature-card {
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(28, 93, 240, 0.06), rgba(14, 165, 164, 0.06));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.feature-card__head i {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f4f7ff;
    color: var(--primary);
}

.feature-card h3 {
    margin: 0;
}

.pillars,
.use-cases,
.how-it-works,
.security-block,
.pricing-callout,
.content-section,
.filters {
    padding: 80px 0;
}

.pricing-callout__inner {
    border-radius: 24px;
    border: 1px solid rgba(12, 27, 51, 0.12);
    background: #fff;
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: var(--soft-shadow);
}

.pricing-callout__inner h2 {
    margin-bottom: 10px;
}

.pricing-callout__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.pricing-callout__actions .btn-primary {
    white-space: nowrap;
}

@media (max-width: 900px) {
    .pricing-callout__inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

.integrations-showcase {
    padding: 80px 0;
    position: relative;
}

.integrations-cloud {
    margin: 30px auto 0;
    width: min(1200px, 92vw);
    /*border-radius: 28px;*/
    /*border: 1px solid rgba(12, 27, 51, 0.12);*/
    padding: 45px 20px;
    position: relative;
    overflow: hidden;
    min-height: 0;
}

.integrations-cloud::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

.integrations-cloud__inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(10, minmax(0, 1fr));
    grid-auto-rows: minmax(44px, auto);
    gap: 18px;
    justify-items: center;
    align-items: center;
    align-content: center;
}

.integration-chip {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 25px 18px;
    border-radius: 999px;
    font-weight: 600;
    color: var(--ink);
    animation: floaty 8s ease-in-out infinite;
    grid-column: var(--x);
    grid-row: var(--y);
}

.integration-chip img {
    height: 26px;
    width: auto;
    max-width: 110px;
    object-fit: contain;
}

.integration-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--dot-strong), var(--dot-soft));
    box-shadow: 0 0 12px var(--dot-glow);
    animation: floaty 6s ease-in-out infinite;
    grid-column: var(--x);
    grid-row: var(--y);
    justify-self: center;
}

.integration-dot:nth-of-type(1) { --dot-strong: rgba(54, 185, 204, 0.95); --dot-soft: rgba(54, 185, 204, 0.2); --dot-glow: rgba(54, 185, 204, 0.6); }
.integration-dot:nth-of-type(2) { --dot-strong: rgba(99, 102, 241, 0.95); --dot-soft: rgba(99, 102, 241, 0.2); --dot-glow: rgba(99, 102, 241, 0.6); }
.integration-dot:nth-of-type(3) { --dot-strong: rgba(34, 197, 94, 0.95); --dot-soft: rgba(34, 197, 94, 0.2); --dot-glow: rgba(34, 197, 94, 0.6); }

.integration-chip:nth-child(odd) { animation-delay: 0.4s; }
.integration-chip:nth-child(3n) { animation-delay: 1s; }

@keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 900px) {
    .integrations-cloud {
        min-height: 420px;
    }
    .integration-chip {
        margin: 6px;
        animation: none;
        grid-column: auto;
        grid-row: auto;
    }
    .integrations-cloud__inner {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 20px;
}

.industry-card {
    border-radius: 18px;
    border: 1px solid var(--line);
    background: #fff;
    padding: 18px;
    box-shadow: var(--soft-shadow);
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.industry-card__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.industry-card__head i {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f4f7ff;
    color: var(--primary);
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.industry-tags span {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(28, 93, 240, 0.08);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.82rem;
}

.use-cases--industry {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 10% 10%, rgba(19, 181, 191, 0.12), transparent 40%),
        radial-gradient(circle at 85% 0%, rgba(28, 93, 240, 0.12), transparent 45%),
        linear-gradient(180deg, rgba(248, 250, 255, 0.9), rgba(255, 255, 255, 0.95));
}

.use-cases--industry::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 20%, rgba(17, 24, 39, 0.06), transparent 55%);
    pointer-events: none;
}

.use-cases--industry::after {
    content: "";
    position: absolute;
    inset: -120% 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.35), transparent 45%, rgba(255, 255, 255, 0.35));
    opacity: 0.6;
    animation: industry-shimmer 38s linear infinite;
    pointer-events: none;
}

.industry-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 24px;
    align-items: center;
    margin-bottom: 32px;
}

.industry-hero__copy h2 {
    margin-top: 8px;
}

.industry-hero__pulse {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.industry-hero__pulse span {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(12, 27, 51, 0.08);
    color: var(--ink);
    font-weight: 700;
    font-size: 0.82rem;
}

.industry-controls {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.industry-controls__item {
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(12, 27, 51, 0.12);
    background: #fff;
    font-weight: 600;
    color: var(--ink);
    box-shadow: var(--soft-shadow);
    position: relative;
    overflow: hidden;
}

.industry-showcase {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 54px 20px;
}

.industry-showcase--panel .industry-tile {
    border-radius: 26px;
    padding: 24px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), #fff);
}

.industry-tile {
    --industry-accent: #1c5df0;
    --industry-soft: rgba(28, 93, 240, 0.12);
    border-radius: 22px;
    border: 1px solid rgba(12, 27, 51, 0.12);
    background: #fff;
    padding: 20px;
    position: relative;
    overflow: visible;
    box-shadow: var(--soft-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    animation: industry-rise 0.8s ease both;
    padding-bottom: 46px;
}

.industry-tile {
    display: block;
    text-decoration: none;
    color: inherit;
}

.industry-tile::before {
    content: "";
    position: absolute;
    inset: -60% 0;
    background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    opacity: 0.25;
    transform: translateX(-80%);
    animation: industry-sheen 8s ease-in-out infinite;
    pointer-events: none;
}

.industry-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(130deg, var(--industry-soft), transparent 45%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.industry-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(17, 24, 39, 0.12);
    border-color: rgba(12, 27, 51, 0.22);
}

.industry-tile:hover::after {
    opacity: 1;
}

.industry-showcase .industry-tile:nth-child(1) { animation-delay: 0.05s; }
.industry-showcase .industry-tile:nth-child(2) { animation-delay: 0.12s; }
.industry-showcase .industry-tile:nth-child(3) { animation-delay: 0.19s; }
.industry-showcase .industry-tile:nth-child(4) { animation-delay: 0.26s; }
.industry-showcase .industry-tile:nth-child(5) { animation-delay: 0.33s; }
.industry-showcase .industry-tile:nth-child(6) { animation-delay: 0.4s; }
.industry-showcase .industry-tile:nth-child(7) { animation-delay: 0.47s; }
.industry-showcase .industry-tile:nth-child(8) { animation-delay: 0.54s; }

.industry-tile__head {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: center;
    margin-bottom: 12px;
}

.industry-tile__badge {
    grid-column: 1 / -1;
    justify-self: start;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--industry-accent);
}

.industry-tile__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--industry-soft);
    color: var(--industry-accent);
}

.industry-tile__head h3 {
    margin: 0 0 6px;
}

.industry-tile__head p {
    margin: 0;
    color: var(--muted);
}

.industry-tile__cases > span {
    display: inline-block;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--muted);
    text-align: right;
    width: 100%;
}

.industry-tile__cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 16px;
    width: 100%;
}

.industry-case {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    padding: 14px 12px;
    border-radius: 14px;
    border: 1px solid rgba(12, 27, 51, 0.08);
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.98));
    font-weight: 600;
    color: var(--ink);
    min-height: 62px;
    text-align: left;
    width: 100%;
}

.industry-case i {
    width: 18px;
    height: 18px;
    color: var(--industry-accent);
    flex-shrink: 0;
}

.industry-tile__hover {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: -44px;
    padding: 12px 16px;
    border-radius: 0 0 18px 18px;
    background: linear-gradient(160deg, rgba(28, 93, 240, 0.22), rgba(255, 255, 255, 0.98));
    color: var(--ink);
    font-weight: 700;
    text-align: center;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    box-shadow: 0 14px 26px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(12, 27, 51, 0.12);
}

.industry-tile:hover .industry-tile__hover {
    opacity: 1;
    transform: translateY(6px);
}

.section-cta--plain {
    text-align: center;
    margin-top: 60px;
}

.cta-pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 30px;
    border-radius: 999px;
    border: 1px solid rgba(12, 27, 51, 0.15);
    background: radial-gradient(circle at 10% 10%, rgba(28, 93, 240, 0.14), transparent 45%),
        linear-gradient(160deg, #ffffff, rgba(28, 93, 240, 0.08));
    color: var(--ink);
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--soft-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    overflow: hidden;
}

.cta-pill::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(28, 93, 240, 0.18), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-pill:hover {
    transform: translateY(-2px);
    border-color: rgba(28, 93, 240, 0.4);
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.12);
}

.cta-pill:hover::after {
    opacity: 1;
}

.industry-ready {
    margin: 28px 0 0;
    padding: 22px;
    border-radius: 20px;
    border: 1px solid rgba(12, 27, 51, 0.12);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: var(--soft-shadow);
    animation: industry-rise 0.8s ease both;
    animation-delay: 0.2s;
}

.industry-ready h3 {
    margin-bottom: 8px;
}

.industry-ready__metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.industry-ready__metrics span {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(28, 93, 240, 0.08);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.8rem;
}

.industry-tile--fintech { --industry-accent: #1c5df0; --industry-soft: rgba(28, 93, 240, 0.12); }
.industry-tile--insurance { --industry-accent: #0ea5a4; --industry-soft: rgba(14, 165, 164, 0.12); }
.industry-tile--commerce { --industry-accent: #f97316; --industry-soft: rgba(249, 115, 22, 0.12); }
.industry-tile--hr { --industry-accent: #d97706; --industry-soft: rgba(217, 119, 6, 0.12); }
.industry-tile--auto { --industry-accent: #16a34a; --industry-soft: rgba(22, 163, 74, 0.12); }
.industry-tile--realestate { --industry-accent: #0f766e; --industry-soft: rgba(15, 118, 110, 0.12); }
.industry-tile--healthcare { --industry-accent: #e11d48; --industry-soft: rgba(225, 29, 72, 0.12); }
.industry-tile--education { --industry-accent: #6366f1; --industry-soft: rgba(99, 102, 241, 0.12); }

@keyframes industry-rise {
    0% {
        opacity: 0;
        transform: translateY(12px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes industry-shimmer {
    0% { transform: translateX(-25%); }
    50% { transform: translateX(25%); }
    100% { transform: translateX(-25%); }
}

@keyframes industry-sheen {
    0% {
        transform: translateX(-80%);
    }
    50% {
        transform: translateX(80%);
    }
    100% {
        transform: translateX(-80%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .industry-tile,
    .industry-ready {
        animation: none;
    }

    .industry-tile::before {
        animation: none;
    }

    .use-cases--industry::after {
        animation: none;
    }
}

@media (hover: none) {
    .industry-tile__hover {
        display: none;
    }
}

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

    .industry-showcase {
        grid-template-columns: 1fr;
    }

    .industry-hero {
        grid-template-columns: 1fr;
    }

    .industry-controls {
        grid-template-columns: 1fr;
    }

    .industry-showcase--panel .industry-tile {
        padding: 20px;
    }

    .industry-tile__cases-grid {
        grid-template-columns: 1fr;
    }

    .industry-intro__grid,
    .industry-deployments,
    .enterprise-ready__grid,
    .industry-nav__grid,
    .industry-hero-page__grid,
    .industry-page-stack__grid,
    .usecase-body__grid,
    .usecase-impact__grid,
    .industry-workflows__grid,
    .industry-challenges__grid,
    .industry-solution__steps,
    .usecase-detail {
        grid-template-columns: 1fr;
    }

    .deployment-meta {
        grid-template-columns: 1fr;
    }

    .industry-flow__connector {
        display: none;
    }
}

.try-agent {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 15% 15%, rgba(28, 93, 240, 0.08), transparent 45%),
        radial-gradient(circle at 80% 0%, rgba(17, 24, 39, 0.06), transparent 55%);
    scroll-margin-top: 96px;
}

.try-agent::before,
.try-agent::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(28, 93, 240, 0.15), transparent 70%);
    filter: blur(10px);
    opacity: 0.7;
    pointer-events: none;
}

.try-agent::before {
    top: -140px;
    right: -120px;
}

.try-agent::after {
    bottom: -180px;
    left: -140px;
}

.agent-types {
    padding: 70px 0 40px;
}

.agent-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    gap: 20px;
}

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

.agent-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid var(--line);
    padding: 18px;
    box-shadow: var(--soft-shadow);
    display: grid;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.agent-card i {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f4f7ff;
    color: var(--primary);
}

.agent-card::after {
    content: "";
    position: absolute;
    top: -40%;
    left: -70%;
    width: 220%;
    height: 70%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 20%,
        rgba(28, 93, 240, 0.1) 45%,
        rgba(255, 255, 255, 0) 70%
    );
    opacity: 0.35;
    animation: card-scan 7s ease-in-out infinite;
    pointer-events: none;
}

.agent-card:hover {
    transform: translateY(-3px);
    border-color: rgba(28, 93, 240, 0.4);
    box-shadow: 0 18px 34px rgba(28, 93, 240, 0.12);
}

.agent-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}

.agent-pill {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(28, 93, 240, 0.08);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.82rem;
}

.try-agent__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
}

.try-agent__left {
    display: grid;
    gap: 20px;
}

.try-agent__modes {
    display: grid;
    gap: 16px;
}

.mode-card {
    border-radius: 16px;
    border: 1px solid var(--line);
    background: linear-gradient(145deg, #ffffff, #f7f9ff);
    padding: 16px;
    display: grid;
    gap: 8px;
    box-shadow: var(--soft-shadow);
    position: relative;
    overflow: hidden;
}

.mode-card::after {
    content: "";
    position: absolute;
    top: -40%;
    left: -70%;
    width: 220%;
    height: 70%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 20%,
        rgba(28, 93, 240, 0.12) 45%,
        rgba(255, 255, 255, 0) 70%
    );
    opacity: 0.4;
    animation: card-scan 6s ease-in-out infinite;
    pointer-events: none;
}

.mode-card i {
    width: 34px;
    height: 34px;
    color: var(--primary);
}

.mode-card--interactive {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.mode-card--interactive:hover {
    transform: translateY(-2px);
    border-color: rgba(28, 93, 240, 0.35);
    box-shadow: 0 16px 30px rgba(28, 93, 240, 0.12);
}

.mode-card--interactive.is-active {
    border-color: var(--primary);
    box-shadow: 0 16px 30px rgba(28, 93, 240, 0.16);
}

.mode-card--interactive.is-active::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 1px solid rgba(28, 93, 240, 0.4);
    box-shadow: 0 0 0 6px rgba(28, 93, 240, 0.08);
    pointer-events: none;
}

.mode-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.mode-card__pulse {
    position: absolute;
    right: 18px;
    top: 50px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(28, 93, 240, 0.3), transparent 65%);
    animation: card-pulse 2.6s ease-in-out infinite;
    pointer-events: none;
}

.mode-card[data-try-mode="chat"] .mode-card__pulse {
    background: radial-gradient(circle, rgba(14, 165, 164, 0.28), transparent 65%);
    animation-delay: 0.3s;
}

.mode-card[data-try-mode="whatsapp"] .mode-card__pulse {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.28), transparent 65%);
    animation-delay: 0.6s;
}

.mode-card__tag {
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(28, 93, 240, 0.12);
    color: var(--primary);
}

.mode-card__cta {
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px dashed rgba(28, 93, 240, 0.18);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: var(--muted);
    font-size: 0.9rem;
}

.mode-cta {
    border: none;
    background: var(--primary);
    color: #fff;
    border-radius: 999px;
    padding: 8px 16px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mode-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(28, 93, 240, 0.2);
}

.try-agent__visual {
    padding: 20px;
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--soft-shadow);
    display: grid;
    gap: 16px;
    border: 1px solid var(--line);
}

.try-agent__visual-header h3 {
    margin-top: 6px;
    font-size: 1.15rem;
}

.try-agent__visual-flow {
    position: relative;
    height: 180px;
    border-radius: 16px;
    background: radial-gradient(circle at 20% 20%, rgba(28, 93, 240, 0.1), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.12), transparent 50%);
    overflow: hidden;
}

.try-agent__visual-flow::after {
    content: "";
    position: absolute;
    top: -30%;
    left: -60%;
    width: 220%;
    height: 60%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 20%,
        rgba(28, 93, 240, 0.18) 45%,
        rgba(255, 255, 255, 0) 70%
    );
    opacity: 0.7;
    animation: scanline-sweep 4.2s ease-in-out infinite;
    pointer-events: none;
}

.signal-orb {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(28, 93, 240, 0.6), rgba(28, 93, 240, 0.1));
    animation: orb-pulse 2.6s ease-in-out infinite;
}

.signal-line {
    position: absolute;
    left: 120px;
    right: 28px;
    height: 2px;
    background: linear-gradient(90deg, rgba(28, 93, 240, 0.4), rgba(28, 93, 240, 0));
    animation: signal-move 2.4s ease-in-out infinite;
}

.signal-line:nth-child(2) {
    top: 50px;
    animation-delay: 0.2s;
}

.signal-line:nth-child(3) {
    top: 90px;
    animation-delay: 0.4s;
}

.signal-line:nth-child(4) {
    top: 130px;
    animation-delay: 0.6s;
}

.signal-node {
    position: absolute;
    right: 40px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.8);
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0.15);
    animation: node-pop 2.6s ease-in-out infinite;
}

.signal-node:nth-child(5) {
    top: 40px;
}

.signal-node:nth-child(6) {
    top: 85px;
    animation-delay: 0.35s;
}

.signal-node:nth-child(7) {
    top: 130px;
    animation-delay: 0.7s;
}

.try-agent__visual-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.try-agent__visual-footer .chip {
    padding: 6px 12px;
    border-radius: 999px;
    background: #f1f5ff;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
}

.try-agent__form[hidden] {
    display: none !important;
}

.try-agent__meta {
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background: #f1f6ff;
    color: var(--primary);
    font-weight: 600;
    animation: fade-in 0.4s ease;
}

.try-agent__form {
    border-radius: 18px;
    padding: 22px;
    transition: transform 0.35s ease, opacity 0.35s ease;
    position: relative;
    border: 1px solid rgba(28, 93, 240, 0.2);
    background: linear-gradient(145deg, #ffffff, #f5f8ff);
}

.try-modal[hidden] {
    display: none;
}

.try-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
}

.try-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(6px);
    opacity: 0;
    animation: modal-fade 0.35s ease forwards;
}

.try-modal__panel {
    width: min(720px, 92vw);
    max-height: 92vh;
    overflow: hidden;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(12px) scale(0.98);
    animation: modal-rise 0.4s ease forwards;
}

.try-modal__close {
    position: absolute;
    right: 16px;
    top: 16px;
    border: none;
    background: #fff;
    border-radius: 999px;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--soft-shadow);
    cursor: pointer;
    z-index: 5;
}

.try-modal__close i {
    width: 18px;
    height: 18px;
}

.no-scroll {
    overflow: hidden;
}

.try-agent__form-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.try-agent__steps {
    display: grid;
    grid-template-columns: repeat(5, 28px) minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.try-step {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid rgba(28, 93, 240, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--muted);
    background: #fff;
    font-weight: 700;
}

.try-step.is-active,
.try-step.is-complete {
    background: rgba(28, 93, 240, 0.12);
    color: var(--primary);
    border-color: rgba(28, 93, 240, 0.4);
}

.try-step__label {
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.try-agent__progress {
    height: 6px;
    border-radius: 999px;
    background: rgba(28, 93, 240, 0.08);
    overflow: hidden;
    margin-bottom: 16px;
}

.try-agent__progress span {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, rgba(28, 93, 240, 0.5), rgba(28, 93, 240, 0.9));
    border-radius: inherit;
    transition: width 0.3s ease;
}

.try-agent__success-status {
    margin: 0 0 14px;
    font-size: 0.92rem;
    color: var(--primary);
    font-weight: 600;
}

.try-agent__back {
    position: absolute;
    top: 20px;
    left: 20px;
    border: 1px solid rgba(54, 185, 204, 0.25);
    background: #fff;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.try-agent__back:hover {
    transform: translateY(-1px);
    border-color: rgba(54, 185, 204, 0.45);
    box-shadow: 0 8px 18px rgba(15, 42, 70, 0.15);
}


.try-agent__panel {
    display: grid;
    gap: 12px;
}



.role-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px;
}

.role-pill {
    border: 1px solid rgba(28, 93, 240, 0.2);
    background: #fff;
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 600;
    color: var(--muted);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.role-pill:hover {
    transform: translateY(-1px);
    border-color: rgba(28, 93, 240, 0.5);
    box-shadow: 0 10px 18px rgba(28, 93, 240, 0.12);
    color: var(--primary);
}

.role-pill.is-active {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(28, 93, 240, 0.08);
}

.try-agent__error {
    margin-top: 12px;
    color: #b91c1c;
    font-weight: 600;
    font-size: 0.9rem;
    min-height: 20px;
}

.try-agent__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
}

.try-agent__success {
    display: grid;
    gap: 16px;
    position: relative;
}

.try-agent__success-head h3 {
    margin: 8px 0 6px;
}

.try-agent__success-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.try-agent__success-note {
    color: var(--muted);
    font-weight: 600;
}

.calendly-inline-wrap {
    position: relative;
}

.calendly-inline-widget {
    height: 70vh;
    min-height: 520px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(28, 93, 240, 0.2);
}

.calendly-fallback {
    position: absolute;
    top: 5px;
    right: 5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.92);
    /*border: 1px solid rgba(54, 185, 204, 0.3);*/
    padding: 5px 15px;
    border-radius: 75px;
    box-shadow: 0 12px 30px rgba(15, 42, 70, 0.12);
    font-size: 0.78rem;
}

.calendly-fallback::before {
    content: none;
}

.calendly-fallback:hover {
    text-decoration: none;
    color: #0f2a46;
    border-color: rgba(15, 42, 70, 0.35);
    background: rgba(54, 185, 204, 0.12);
}

.btn-ghost {
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #fff;
    color: var(--ink);
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 600;
    cursor: pointer;
}

.btn-ghost:hover {
    border-color: rgba(28, 93, 240, 0.4);
    color: var(--primary);
}

.try-agent__form-head h3 {
    margin-top: 6px;
    font-size: 1.2rem;
}

.form-pulse {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(28, 93, 240, 0.4), transparent 60%);
    position: relative;
}

.form-pulse::after {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    border: 2px solid rgba(28, 93, 240, 0.35);
    animation: pulse-ring 2s ease-in-out infinite;
}

.try-agent__form-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 14px 0 18px;
    color: var(--muted);
    font-size: 0.9rem;
}

.try-agent__form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--muted);
    padding: 2px 0;
}

.try-agent__form .field-error {
    min-height: 16px;
    font-size: 0.75rem;
    color: #d14343;
    font-weight: 600;
}

.try-agent__form input.is-invalid {
    border-color: rgba(209, 67, 67, 0.6);
    box-shadow: 0 0 0 3px rgba(209, 67, 67, 0.12);
    background: #fff6f6;
}

.try-agent__form input,
.try-agent__form select {
    border-radius: 12px;
    border: 1px solid var(--line);
    padding: 10px 12px;
    background: #fbfcff;
    font-family: "DM Sans", sans-serif;
}

.try-agent__form input:focus,
.try-agent__form select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(28, 93, 240, 0.15);
    outline: none;
}

.phone-input {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 10px;
}

.phone-input select {
    border-radius: 12px;
    border: 1px solid var(--line);
    padding: 10px;
    background: #fbfcff;
}

@keyframes orb-pulse {
    0%,
    100% {
        transform: translateY(-50%) scale(1);
        opacity: 0.9;
    }
    50% {
        transform: translateY(-50%) scale(1.08);
        opacity: 1;
    }
}

@keyframes signal-move {
    0% {
        opacity: 0.2;
        transform: translateX(-10px);
    }
    50% {
        opacity: 0.9;
        transform: translateX(0);
    }
    100% {
        opacity: 0.4;
        transform: translateX(10px);
    }
}

@keyframes node-pop {
    0%,
    100% {
        transform: scale(0.8);
        opacity: 0.7;
    }
    50% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.2);
        opacity: 0.2;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

@keyframes card-pulse {
    0%,
    100% {
        transform: scale(0.9);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.15);
        opacity: 1;
    }
}

@keyframes scanline-sweep {
    0% {
        transform: translateX(-20%) translateY(0);
        opacity: 0.2;
    }
    40% {
        opacity: 0.8;
    }
    70% {
        opacity: 0.4;
    }
    100% {
        transform: translateX(20%) translateY(20%);
        opacity: 0.15;
    }
}

@keyframes hero-scanline {
    0% {
        transform: translateX(-20%) translateY(0);
        opacity: 0.2;
    }
    45% {
        opacity: 0.75;
    }
    80% {
        opacity: 0.35;
    }
    100% {
        transform: translateX(20%) translateY(20%);
        opacity: 0.2;
    }
}

@keyframes bubble-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

@keyframes modal-fade {
    to {
        opacity: 1;
    }
}

@keyframes modal-rise {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes card-scan {
    0% {
        transform: translateX(-20%) translateY(0);
        opacity: 0.15;
    }
    40% {
        opacity: 0.45;
    }
    100% {
        transform: translateX(20%) translateY(20%);
        opacity: 0.15;
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 960px) {
    .try-agent__grid {
        grid-template-columns: 1fr;
    }
}

.pillars__grid,
.security-grid,
.platform-grid,
.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.security-card {
    min-height: 260px;
    padding: 24px;
    gap: 14px;
    background: linear-gradient(160deg, #ffffff, rgba(54, 185, 204, 0.08));
    display: flex;
    flex-direction: column;
}

.security-card__head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.security-card__head i {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(54, 185, 204, 0.15);
    color: var(--primary);
}

.security-points {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
}

.security-points span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.security-points span::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

.why-spotlight {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 24px;
    align-items: start;
}

.why-spotlight__rail {
    position: sticky;
    top: 120px;
    display: grid;
    gap: 16px;
    align-content: start;
    padding-top: 12px;
}

.rail-node {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(28, 93, 240, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--muted);
    background: #fff;
}

.rail-node.is-active {
    background: rgba(28, 93, 240, 0.12);
    color: var(--primary);
    border-color: rgba(28, 93, 240, 0.4);
}

.why-spotlight__panels {
    display: grid;
    gap: 20px;
}

.spotlight-panel {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 16px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(28, 93, 240, 0.18);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.08);
    padding: 18px 20px 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spotlight-panel::after {
    content: "";
    position: absolute;
    inset: -40% -30% auto auto;
    height: 120%;
    width: 120%;
    background: radial-gradient(circle, rgba(28, 93, 240, 0.16), transparent 65%);
    opacity: 0.5;
    pointer-events: none;
}

.spotlight-panel:hover {
    transform: translateY(-4px);
    box-shadow: 0 32px 64px rgba(28, 93, 240, 0.18);
}

.spotlight-panel__edge {
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(28, 93, 240, 0.16), rgba(28, 93, 240, 0.02));
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.spotlight-panel__content {
    display: grid;
    gap: 12px;
}

.spotlight-panel__head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.spotlight-panel__head i {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f1f6ff;
    color: var(--primary);
}

.spotlight-kicker {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(28, 93, 240, 0.6);
}

.spotlight-panel__bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.spotlight-panel__bar span {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(28, 93, 240, 0.1);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.82rem;
}

.spotlight-panel--primary {
    border-left: 4px solid rgba(28, 93, 240, 0.6);
}

@media (max-width: 980px) {
    .why-spotlight {
        grid-template-columns: 1fr;
    }
    .why-spotlight__rail {
        position: static;
        grid-template-columns: repeat(3, 1fr);
        justify-items: center;
    }
    .spotlight-panel {
        grid-template-columns: 1fr;
    }
    .spotlight-panel__edge {
        justify-self: start;
        padding: 8px 14px;
        width: fit-content;
    }
}

.saas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 14px;
}

.saas-grid span {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px 14px;
    text-align: center;
    font-weight: 600;
    color: var(--muted);
    box-shadow: var(--soft-shadow);
}

.use-cases__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.use-cases__grid--wide {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.pillars-alt {
    padding: 80px 0;
    background: radial-gradient(circle at top, rgba(54, 185, 204, 0.12), transparent 60%);
}

.pillars-alt__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 32px;
}

@media (max-width: 1100px) {
    .pillars-alt__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .pillars-alt__grid {
        grid-template-columns: 1fr;
    }
}

.pillars-alt__card {
    background: #fff;
    border: 1px solid rgba(15, 42, 70, 0.1);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 18px 40px rgba(15, 42, 70, 0.08);
    display: grid;
    gap: 12px;
    min-height: 220px;
}

.pillars-alt__icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(54, 185, 204, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.pillars-alt__card h3 {
    font-size: 1.05rem;
    margin: 0;
}

.pillars-alt__card p {
    color: var(--muted);
    margin: 0;
}

.use-case {
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: 100%;
}

.use-case__content p {
    color: var(--muted);
}

.use-case__meta {
    display: grid;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--muted);
}

.use-case__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
}

.metric {
    display: inline-flex;
    margin-top: 12px;
    font-weight: 600;
    color: var(--primary);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.step {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--line);
}

.step__num {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: rgba(28, 93, 240, 0.1);
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
}

.section-cta {
    margin-top: 28px;
}

.section-cta.section-cta--plain {
    margin-top: 60px;
}

.page-hero {
    padding: 120px 0 40px;
}

.page-hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin: 12px 0 16px;
}

.page-hero p {
    color: var(--muted);
    max-width: 720px;
}

.page-hero--industry {
    background: radial-gradient(circle at 15% 20%, rgba(28, 93, 240, 0.12), transparent 45%),
        radial-gradient(circle at 80% 0%, rgba(14, 165, 164, 0.1), transparent 55%);
}

.industry-intro {
    padding: 60px 0;
}

.industry-intro__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 28px;
    align-items: center;
}

.industry-intro__pillars {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.industry-intro__pillars div {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(12, 27, 51, 0.08);
    font-weight: 600;
}

.industry-intro__card {
    border-radius: 20px;
    border: 1px solid rgba(12, 27, 51, 0.12);
    background: #fff;
    padding: 22px;
    box-shadow: var(--soft-shadow);
}

.industry-intro__controls {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.industry-intro__controls span {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(28, 93, 240, 0.08);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.82rem;
}

.industry-nav {
    padding: 40px 0 20px;
}

.industry-nav__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.industry-nav__card {
    border-radius: 18px;
    border: 1px solid rgba(12, 27, 51, 0.12);
    background: #fff;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 140px;
    text-decoration: none;
    color: var(--ink);
    box-shadow: var(--soft-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.industry-nav__icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--industry-soft);
    color: var(--industry-accent);
    margin-bottom: 10px;
}

.industry-nav__card span {
    font-weight: 700;
}

.industry-nav__card p {
    margin: 8px 0 0;
    color: var(--muted);
}

.industry-nav__card strong {
    margin-top: 16px;
    color: var(--primary);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.industry-nav__card strong i {
    width: 16px;
    height: 16px;
}

.industry-nav__card:hover {
    transform: translateY(-4px);
    border-color: rgba(12, 27, 51, 0.24);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.industry-block {
    padding: 70px 0;
    position: relative;
}

.industry-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 255, 0.9));
    opacity: 0.8;
    pointer-events: none;
}

.industry-block > .container {
    position: relative;
    z-index: 1;
}

.industry-block__head {
    max-width: 760px;
    margin-bottom: 24px;
}

.industry-deployments {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.deployment-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-radius: 18px;
    border: 1px solid rgba(12, 27, 51, 0.12);
    background:
        radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.9), transparent 40%),
        linear-gradient(160deg, #ffffff, rgba(248, 250, 255, 0.92));
    padding: 18px;
    box-shadow: var(--soft-shadow);
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    text-decoration: none;
    color: inherit;
}

.deployment-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.6), transparent 40%),
        linear-gradient(120deg, var(--industry-soft), transparent 55%);
    opacity: 0.45;
    pointer-events: none;
}

.deployment-card::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 17px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    opacity: 0.6;
    pointer-events: none;
}

.deployment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
    border-color: rgba(12, 27, 51, 0.2);
}

.deployment-card:focus-visible {
    outline: 3px solid rgba(12, 27, 51, 0.18);
    outline-offset: 4px;
}

.deployment-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.deployment-card__icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(140deg, #ffffff, var(--industry-soft));
    color: var(--industry-accent);
    box-shadow: 0 10px 18px rgba(12, 27, 51, 0.12);
}

.deployment-card__tag {
    padding: 4px 10px;
    border-radius: 999px;
    background: linear-gradient(120deg, var(--industry-soft), rgba(12, 27, 51, 0.06));
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: var(--muted);
}

.deployment-card__eyebrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.deployment-card__eyebrow i {
    width: 16px;
    height: 16px;
    color: var(--industry-accent);
}

.deployment-card__summary {
    color: var(--muted);
}

.deployment-card__content {
    position: relative;
    z-index: 1;
}

.deployment-card h3 {
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.deployment-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(12, 27, 51, 0.12);
    background: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
}

.deployment-meta__label {
    display: inline-flex;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: var(--muted);
}

.deployment-meta__value {
    margin: 6px 0 0;
    color: var(--ink);
    font-weight: 600;
}

.deployment-card__hint {
    font-size: 0.78rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    position: relative;
    z-index: 1;
}

.deployment-card:hover .deployment-card__hint,
.deployment-card:focus-visible .deployment-card__hint {
    opacity: 1;
    transform: translateY(0);
}

.industry-integrations {
    margin-top: 18px;
    padding: 14px 18px;
    border-radius: 16px;
    background: rgba(12, 27, 51, 0.06);
    font-weight: 600;
}

.industry-block__cta {
    margin-top: 16px;
}

.industry-block__cta a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
}

.enterprise-ready {
    padding: 70px 0;
    background: linear-gradient(180deg, #f8f9ff, #ffffff);
}

.enterprise-ready__head {
    max-width: 700px;
    margin-bottom: 24px;
}

.enterprise-ready__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.enterprise-ready__grid h4 {
    margin-bottom: 8px;
}

.industry-nav__card--lending-fintech { --industry-accent: #1c5df0; --industry-soft: rgba(28, 93, 240, 0.12); border-color: rgba(28, 93, 240, 0.2); }
.industry-nav__card--insurance { --industry-accent: #0ea5a4; --industry-soft: rgba(14, 165, 164, 0.12); border-color: rgba(14, 165, 164, 0.2); }
.industry-nav__card--d2c-ecommerce { --industry-accent: #f97316; --industry-soft: rgba(249, 115, 22, 0.12); border-color: rgba(249, 115, 22, 0.2); }
.industry-nav__card--recruitment-hr { --industry-accent: #d97706; --industry-soft: rgba(217, 119, 6, 0.12); border-color: rgba(217, 119, 6, 0.2); }
.industry-nav__card--auto-mobility { --industry-accent: #16a34a; --industry-soft: rgba(22, 163, 74, 0.12); border-color: rgba(22, 163, 74, 0.2); }
.industry-nav__card--real-estate { --industry-accent: #0f766e; --industry-soft: rgba(15, 118, 110, 0.12); border-color: rgba(15, 118, 110, 0.2); }
.industry-nav__card--healthcare { --industry-accent: #e11d48; --industry-soft: rgba(225, 29, 72, 0.12); border-color: rgba(225, 29, 72, 0.2); }
.industry-nav__card--education { --industry-accent: #6366f1; --industry-soft: rgba(99, 102, 241, 0.12); border-color: rgba(99, 102, 241, 0.2); }

.industry-block {
    --industry-accent: #1c5df0;
    --industry-soft: rgba(28, 93, 240, 0.12);
}

.industry-block::before {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), var(--industry-soft));
}

.industry-flow {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin: 20px 0 28px;
}

.industry-flow__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    min-width: 88px;
}

.industry-flow__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--industry-soft);
    color: var(--industry-accent);
}

.industry-flow__connector {
    flex: 1;
    height: 2px;
    min-width: 32px;
    background: linear-gradient(90deg, var(--industry-soft), rgba(12, 27, 51, 0.08));
    border-radius: 999px;
}

.industry-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid rgba(12, 27, 51, 0.12);
    background: linear-gradient(160deg, #fff, var(--industry-soft));
    color: var(--ink);
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--soft-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.industry-cta::after {
    content: "→";
    color: var(--industry-accent);
}

.industry-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.12);
    border-color: rgba(12, 27, 51, 0.24);
}

.industry-block--lending-fintech { --industry-accent: #1c5df0; --industry-soft: rgba(28, 93, 240, 0.12); }
.industry-block--insurance { --industry-accent: #0ea5a4; --industry-soft: rgba(14, 165, 164, 0.12); }
.industry-block--d2c-ecommerce { --industry-accent: #f97316; --industry-soft: rgba(249, 115, 22, 0.12); }
.industry-block--recruitment-hr { --industry-accent: #d97706; --industry-soft: rgba(217, 119, 6, 0.12); }
.industry-block--auto-mobility { --industry-accent: #16a34a; --industry-soft: rgba(22, 163, 74, 0.12); }
.industry-block--real-estate { --industry-accent: #0f766e; --industry-soft: rgba(15, 118, 110, 0.12); }
.industry-block--healthcare { --industry-accent: #e11d48; --industry-soft: rgba(225, 29, 72, 0.12); }
.industry-block--education { --industry-accent: #6366f1; --industry-soft: rgba(99, 102, 241, 0.12); }

.industry-hero-page {
    padding: 120px 0 60px;
    background: radial-gradient(circle at 12% 20%, var(--industry-soft), transparent 45%),
        radial-gradient(circle at 85% 0%, rgba(12, 27, 51, 0.08), transparent 55%);
}

.industry-hero-page__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 28px;
    align-items: center;
}

.industry-hero-page__panel {
    border-radius: 20px;
    border: 1px solid rgba(12, 27, 51, 0.12);
    background: #fff;
    padding: 22px;
    box-shadow: var(--soft-shadow);
}

.industry-hero-page__controls {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.industry-hero-page__controls span {
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--industry-soft);
    color: var(--industry-accent);
    font-weight: 600;
    font-size: 0.82rem;
}

.industry-hero-page__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.industry-page-deployments {
    padding: 60px 0;
}

.industry-workflows,
.industry-challenges,
.industry-solution {
    margin-bottom: 40px;
}

.industry-workflows__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 16px;
}

.workflow-card {
    border-radius: 18px;
    border: 1px solid rgba(12, 27, 51, 0.12);
    background: #fff;
    padding: 18px;
    box-shadow: var(--soft-shadow);
}

.workflow-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--industry-soft);
    color: var(--industry-accent);
    margin-bottom: 10px;
}

.workflow-card ul {
    margin: 10px 0 0;
    padding-left: 18px;
    color: var(--muted);
}

.industry-challenges__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.challenge-card {
    border-radius: 16px;
    border: 1px solid rgba(12, 27, 51, 0.12);
    background: rgba(12, 27, 51, 0.03);
    padding: 14px 16px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.challenge-card i {
    width: 18px;
    height: 18px;
    color: var(--industry-accent);
    margin-top: 2px;
}

.industry-solution__steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.solution-step {
    display: flex;
    gap: 12px;
    border-radius: 18px;
    border: 1px solid rgba(12, 27, 51, 0.12);
    background: #fff;
    padding: 16px;
    box-shadow: var(--soft-shadow);
}

.solution-step__icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--industry-soft);
    color: var(--industry-accent);
    flex-shrink: 0;
}
.deployment-card--link {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
    cursor: pointer;
}

.deployment-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.deployment-link--full {
    justify-content: center;
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid rgba(12, 27, 51, 0.2);
    background: linear-gradient(140deg, rgba(12, 27, 51, 0.06), #ffffff);
    color: var(--ink);
    margin-top: auto;
    letter-spacing: 0.01em;
    position: relative;
    z-index: 1;
}

.deployment-link--full i {
    width: 16px;
    height: 16px;
    color: var(--industry-accent);
}

.industry-page-stack {
    padding: 60px 0;
    background: linear-gradient(180deg, #f8f9ff, #ffffff);
}

.industry-page-stack__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.usecase-hero {
    padding: 120px 0 40px;
    background: radial-gradient(circle at 15% 20%, var(--industry-soft), transparent 45%);
}

.usecase-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
    color: var(--muted);
    font-weight: 600;
}

.usecase-hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.usecase-body {
    padding: 50px 0;
}

.usecase-body__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}

.usecase-detail {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}

.usecase-detail__card {
    border-radius: 18px;
    border: 1px solid rgba(12, 27, 51, 0.12);
    background: #fff;
    padding: 18px;
    box-shadow: var(--soft-shadow);
}

.usecase-detail__card h3 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.usecase-detail__card h3 i {
    width: 18px;
    height: 18px;
    color: var(--industry-accent);
}

.usecase-detail__card ol,
.usecase-detail__card ul {
    margin: 10px 0 0;
    padding-left: 18px;
    color: var(--muted);
}

.usecase-card {
    border-radius: 18px;
    border: 1px solid rgba(12, 27, 51, 0.12);
    background: #fff;
    padding: 18px;
    box-shadow: var(--soft-shadow);
}

.usecase-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.usecase-tags span {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(12, 27, 51, 0.08);
    font-weight: 600;
    font-size: 0.82rem;
}

.usecase-impact {
    padding: 50px 0 70px;
}

.usecase-impact__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.content-block {
    padding: 24px 0 80px;
}

.content-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(15, 42, 70, 0.08);
    box-shadow: 0 20px 60px rgba(15, 42, 70, 0.08);
}

.content-card h2 {
    margin-top: 20px;
    font-size: 1.2rem;
}

.content-card p {
    color: var(--muted);
}

.content-muted {
    color: var(--muted);
    font-size: 0.85rem;
}

.filters .filters__group {
    margin-bottom: 24px;
}

.filters h6 {
    font-weight: 600;
    margin-bottom: 12px;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip {
    border-radius: 999px;
    padding: 6px 14px;
    border: 1px solid var(--line);
    background: #fff;
    font-weight: 600;
    color: var(--muted);
}

.chip.is-active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    align-items: start;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.timeline__item {
    background: #fff;
    border-radius: 14px;
    padding: 16px;
    border: 1px solid var(--line);
}

.timeline__item span {
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

.behavior-diagram {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.behavior-step {
    padding: 16px;
    border-radius: 999px;
    border: 1px dashed var(--primary);
    text-align: center;
    font-weight: 600;
    color: var(--primary);
    background: #f1f6ff;
}

.demo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    align-items: start;
}

.demo-grid--fancy {
    gap: 32px;
}

.demo-hero {
    background: radial-gradient(circle at 20% 20%, rgba(28, 93, 240, 0.12), transparent 55%);
}

.demo-intel {
    display: grid;
    gap: 20px;
    position: sticky;
    top: 120px;
}

.demo-intel__card {
    background: #fff;
    border-radius: 18px;
    padding: 22px;
    border: 1px solid var(--line);
    box-shadow: var(--soft-shadow);
    position: relative;
}

.demo-intel__card--glass {
    background: linear-gradient(135deg, rgba(28, 93, 240, 0.08), rgba(14, 165, 164, 0.08));
    border: 1px solid rgba(28, 93, 240, 0.2);
}

.demo-intel__signal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font-weight: 600;
    color: var(--accent);
}

.demo-orbit {
    position: relative;
    height: 120px;
    margin-top: 16px;
}

.demo-orbit span {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 16px rgba(28, 93, 240, 0.35);
    animation: orbit 6s linear infinite;
}

.demo-orbit span:nth-child(2) {
    width: 10px;
    height: 10px;
    background: var(--accent);
    animation-duration: 4.5s;
}

.demo-orbit span:nth-child(3) {
    width: 8px;
    height: 8px;
    background: #2f80ed;
    animation-duration: 5.4s;
}

.demo-form--fancy {
    position: relative;
    overflow: hidden;
}

.demo-form--fancy::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(28, 93, 240, 0.08), transparent 60%);
    pointer-events: none;
}

.form-progress {
    grid-column: 1 / -1;
    display: grid;
    gap: 10px;
    margin-bottom: 8px;
}

.form-progress span {
    font-weight: 600;
    color: var(--muted);
}

.form-progress__bar {
    width: 100%;
    height: 6px;
    background: #eaf0fb;
    border-radius: 999px;
    overflow: hidden;
}

.form-progress__bar span {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.4s ease;
}

.demo-ai-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 14px;
    background: #f1f6ff;
    color: var(--primary);
    font-weight: 600;
    margin: 14px 0 0;
}

.pulse {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px rgba(14, 165, 164, 0.6);
    position: relative;
}

.pulse::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid rgba(14, 165, 164, 0.5);
    animation: pulse 1.8s ease-out infinite;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #fbfcff;
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(28, 93, 240, 0.15);
    outline: none;
}

.demo-form fieldset {
    background: #fbfcff;
}

.demo-form label,
.demo-form fieldset {
    display: grid;
    gap: 8px;
    font-weight: 600;
    color: var(--ink);
}

.demo-form input,
.demo-form select,
.demo-form textarea {
    border-radius: 12px;
    border: 1px solid var(--line);
    padding: 10px 12px;
    font-weight: 500;
    font-family: "DM Sans", sans-serif;
}

.demo-form fieldset {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px;
    gap: 6px;
}

.demo-form fieldset label {
    font-weight: 500;
}

.demo-form .form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.demo-form .full {
    grid-column: 1 / -1;
}

.demo-form button {
    margin-top: 18px;
    width: 100%;
}

.demo-confirmation {
    display: none;
    margin-top: 16px;
    background: #e9f6f4;
    color: #0b4d4a;
    border-radius: 12px;
    padding: 12px;
    font-weight: 600;
}

.demo-confirmation.is-visible {
    display: block;
}

.demo-intent {
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    background: #f1f6ff;
    color: var(--primary);
    font-weight: 600;
    display: none;
}

.demo-intent.is-visible {
    display: block;
}

.cta-final {
    padding: 80px 0;
}

.cta-final__inner {
    background: linear-gradient(120deg, #1c5df0, #0ea5a4);
    color: #fff;
    border-radius: 22px;
    padding: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-final__inner h2,
.cta-final__inner p {
    color: #fff;
}

.cta-final__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.site-footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--line);
    background: #fff;
}

.site-footer__top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 28px;
    margin-bottom: 32px;
}

.footer-links {
    display: grid;
    gap: 8px;
    color: var(--muted);
}

.footer-links h6 {
    font-weight: 600;
    color: var(--ink);
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.footer-badges span {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(12, 27, 51, 0.08);
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--ink);
}

.site-footer__founder {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    padding: 24px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 0.9rem;
    padding-top: 18px;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

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

    .site-actions {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .cta-inline__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .demo-intel {
        position: static;
    }

    .logo-track {
        animation-duration: 40s;
    }
}

@media (max-width: 640px) {
    .container-fluid {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .site-header__inner {
        padding: 16px 20px;
    }

    .cta-final__inner {
        padding: 26px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto;
    }
    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@keyframes orbit {
    0% {
        transform: translate(10px, 10px);
    }
    25% {
        transform: translate(120px, 10px);
    }
    50% {
        transform: translate(120px, 80px);
    }
    75% {
        transform: translate(10px, 80px);
    }
    100% {
        transform: translate(10px, 10px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

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

.chat-float {
    position: fixed;
    left: 50%;
    right: auto;
    bottom: clamp(16px, 4vw, 32px);
    transform: translateX(-50%);
    z-index: 2600;
    width: min(92vw, 360px);
}

.chat-float__btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid rgba(54, 185, 204, 0.35);
    background: linear-gradient(135deg, #e6fbff, #ffffff);
    box-shadow: 0 20px 50px rgba(15, 42, 70, 0.18);
    color: #0f2a46;
    font-family: "DM Sans", sans-serif;
    font-size: 0.88rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    justify-content: center;
    text-align: center;
}

.chat-float__btn strong {
    display: block;
    font-size: 0.82rem;
    color: var(--primary);
    font-weight: 700;
}

.chat-float__btn i {
    width: 22px;
    height: 22px;
    color: var(--primary);
}

.chat-float__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 60px rgba(15, 42, 70, 0.22);
}

.chat-float__pulse {
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle, rgba(54, 185, 204, 0.25), transparent 65%);
    animation: floatPulse 2.8s ease-in-out infinite;
    z-index: -1;
}

@keyframes floatPulse {
    0%,
    100% {
        transform: scale(0.9);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.chat-float.is-visible .chat-float__btn {
    animation: floatPop 0.5s ease-out both;
}

@keyframes floatPop {
    0% {
        transform: translateY(14px) scale(0.96);
        opacity: 0;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.chat-widget {
    position: fixed;
    left: 50%;
    bottom: clamp(84px, 10vh, 130px);
    transform: translateX(-50%) translateY(12px);
    width: min(94vw, 460px);
    max-height: min(78vh, 720px);
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(15, 42, 70, 0.25);
    border: 1px solid rgba(15, 42, 70, 0.08);
    display: grid;
    grid-template-rows: auto 1fr auto;
    overflow: hidden;
    opacity: 0;
    z-index: 2601;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.chat-widget.is-open {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.chat-widget__header {
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(54, 185, 204, 0.18), rgba(15, 42, 70, 0.08));
}

.chat-widget__actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.chat-widget__title {
    display: block;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    color: #0f2a46;
}

.chat-widget__status {
    font-size: 0.78rem;
    color: rgba(15, 42, 70, 0.7);
}

.chat-widget__clear {
    border: 1px solid rgba(15, 42, 70, 0.2);
    background: #fff;
    color: #0f2a46;
    font-size: 0.72rem;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 6px 12px rgba(15, 42, 70, 0.08);
}

.chat-widget__clear:hover {
    border-color: rgba(15, 42, 70, 0.35);
}

.chat-widget__close {
    border: none;
    background: #fff;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(15, 42, 70, 0.12);
    cursor: pointer;
}

.chat-widget__close i {
    width: 16px;
    height: 16px;
}

.chat-widget__body {
    padding: 16px;
    background: #f8fbff;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 0;
}

.chat-widget__messages {
    display: grid;
    gap: 12px;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
}

.chat-widget__verify {
    display: grid;
    gap: 10px;
    padding: 12px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 42, 70, 0.08);
    font-family: "DM Sans", sans-serif;
    color: #0f2a46;
}

.chat-verify__title {
    font-weight: 700;
    margin: 0;
}

.chat-verify__note {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(15, 42, 70, 0.7);
}

.chat-verify__label {
    font-size: 0.75rem;
    font-weight: 600;
    display: grid;
    gap: 6px;
    color: rgba(15, 42, 70, 0.75);
}

.chat-verify__input {
    border-radius: 10px;
    border: 1px solid rgba(15, 42, 70, 0.15);
    padding: 10px 12px;
    font-size: 0.85rem;
    font-family: "DM Sans", sans-serif;
}

.chat-verify__send,
.chat-verify__confirm {
    border: none;
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 600;
    font-size: 0.82rem;
    cursor: pointer;
}

.chat-verify__send {
    background: rgba(54, 185, 204, 0.12);
    color: #0f2a46;
}

.chat-verify__confirm {
    background: #0f2a46;
    color: #fff;
}

.chat-verify__error {
    min-height: 18px;
    margin: 0;
    font-size: 0.78rem;
    color: #b42318;
}

.chat-msg {
    display: grid;
    gap: 6px;
    font-family: "DM Sans", sans-serif;
}

.chat-msg__name {
    font-size: 0.78rem;
    color: rgba(15, 42, 70, 0.7);
}

.chat-msg__bubble {
    padding: 12px 14px;
    border-radius: 16px;
    line-height: 1.4;
    font-size: 0.9rem;
    white-space: normal;
}

.chat-msg__bubble p {
    margin: 0 0 6px;
}

.chat-msg__bubble p:last-child {
    margin-bottom: 0;
}

.chat-msg__bubble ul,
.chat-msg__bubble ol {
    margin: 0 0 6px 18px;
    padding: 0;
}

.chat-msg__bubble li {
    margin: 0 0 4px;
}

.chat-msg__bubble code {
    background: rgba(15, 42, 70, 0.08);
    padding: 2px 5px;
    border-radius: 6px;
    font-size: 0.82rem;
}

.chat-msg__bubble a {
    color: #0f2a46;
    text-decoration: underline;
}

.chat-msg__time {
    font-size: 0.72rem;
    color: rgba(15, 42, 70, 0.45);
    margin-top: 4px;
}

.chat-msg--agent .chat-msg__bubble {
    background: #ffffff;
    border: 1px solid rgba(15, 42, 70, 0.08);
    color: #0f2a46;
    border-bottom-left-radius: 6px;
}

.chat-msg--user {
    justify-items: end;
}

.chat-msg--user .chat-msg__bubble {
    background: linear-gradient(135deg, rgba(54, 185, 204, 0.18), rgba(15, 42, 70, 0.05));
    color: #0f2a46;
    border-bottom-right-radius: 6px;
}

.chat-msg--user .chat-msg__bubble * {
    color: #0f2a46;
}

.chat-widget__composer {
    padding: 12px 14px 14px;
    display: flex;
    gap: 10px;
    align-items: center;
    background: #fff;
    border-top: 1px solid rgba(15, 42, 70, 0.08);
}

.chat-widget__composer input {
    flex: 1;
    border-radius: 999px;
    border: 1px solid rgba(15, 42, 70, 0.12);
    padding: 10px 14px;
    font-family: "DM Sans", sans-serif;
    font-size: 0.9rem;
}

.chat-widget__composer button {
    border: none;
    background: var(--primary);
    color: #fff;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(15, 42, 70, 0.18);
}
.industry-page,
.usecase-page {
    --industry-accent: #1c5df0;
    --industry-soft: rgba(28, 93, 240, 0.12);
}

.industry-page--lending-fintech,
.usecase-page--lending-fintech { --industry-accent: #1c5df0; --industry-soft: rgba(28, 93, 240, 0.12); }
.industry-page--insurance,
.usecase-page--insurance { --industry-accent: #0ea5a4; --industry-soft: rgba(14, 165, 164, 0.12); }
.industry-page--d2c-ecommerce,
.usecase-page--d2c-ecommerce { --industry-accent: #f97316; --industry-soft: rgba(249, 115, 22, 0.12); }
.industry-page--recruitment-hr,
.usecase-page--recruitment-hr { --industry-accent: #d97706; --industry-soft: rgba(217, 119, 6, 0.12); }
.industry-page--auto-mobility,
.usecase-page--auto-mobility { --industry-accent: #16a34a; --industry-soft: rgba(22, 163, 74, 0.12); }
.industry-page--real-estate,
.usecase-page--real-estate { --industry-accent: #0f766e; --industry-soft: rgba(15, 118, 110, 0.12); }
.industry-page--healthcare,
.usecase-page--healthcare { --industry-accent: #e11d48; --industry-soft: rgba(225, 29, 72, 0.12); }
.industry-page--education,
.usecase-page--education { --industry-accent: #6366f1; --industry-soft: rgba(99, 102, 241, 0.12); }

.usecase-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 28px;
    align-items: start;
}

.usecase-hero__copy h1 {
    font-size: clamp(2.2rem, 3.5vw, 3.6rem);
}

.usecase-hero__value {
    font-size: 1.15rem;
    font-weight: 600;
}

.usecase-hero__example {
    margin-top: 12px;
    color: var(--muted);
}

.usecase-hero__trust {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.usecase-hero__trust div {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(12, 27, 51, 0.05);
    font-weight: 600;
}

.usecase-hero__trust i {
    width: 18px;
    height: 18px;
    color: var(--industry-accent);
}

.usecase-hero__panel {
    display: grid;
    gap: 14px;
}

.usecase-hero__panel-card {
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(12, 27, 51, 0.12);
    padding: 18px;
    box-shadow: var(--soft-shadow);
}

.usecase-hero__panel-label {
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: var(--muted);
}

.usecase-subnav {
    position: sticky;
    top: 85px;
    z-index: 10;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(12, 27, 51, 0.08);
}

.usecase-subnav__grid {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    flex-wrap: wrap;
}

.usecase-subnav__grid a {
    font-weight: 600;
    color: var(--muted);
    padding: 6px 10px;
    border-radius: 999px;
}

.usecase-subnav__grid a:hover {
    color: var(--industry-accent);
    background: var(--industry-soft);
}

.usecase-section {
    padding: 60px 0;
}

.usecase-section,
.usecase-hero {
    scroll-margin-top: 120px;
}

.usecase-section__head {
    margin-bottom: 24px;
}

.usecase-pill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.usecase-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(12, 27, 51, 0.08);
    font-weight: 600;
}

.usecase-pill i {
    width: 16px;
    height: 16px;
    color: var(--industry-accent);
}

.usecase-jobs-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.usecase-jobs-grid .usecase-card {
    background: linear-gradient(160deg, rgba(12, 27, 51, 0.04), rgba(255, 255, 255, 0.9));
}

.usecase-jobs-grid .usecase-card h3 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.usecase-workflow {
    list-style: none;
    display: grid;
    gap: 14px;
    padding: 0;
    margin: 0;
}

.usecase-workflow li {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(12, 27, 51, 0.12);
    background: #fff;
    box-shadow: var(--soft-shadow);
}

.usecase-workflow__index {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--industry-soft);
    color: var(--industry-accent);
    font-weight: 700;
}

.usecase-convo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.usecase-convo {
    border-radius: 18px;
    border: 1px solid rgba(12, 27, 51, 0.12);
    background: #fff;
    padding: 18px;
    box-shadow: var(--soft-shadow);
    display: grid;
    gap: 12px;
}

.usecase-convo__head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-weight: 700;
}

.usecase-convo__channel {
    font-size: 0.85rem;
    color: var(--industry-accent);
}

.usecase-convo__lines p {
    margin: 0 0 8px;
    color: var(--muted);
}

.usecase-convo__note {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(12, 27, 51, 0.06);
    font-size: 0.85rem;
}

.usecase-convo__note i {
    width: 16px;
    height: 16px;
    color: var(--industry-accent);
}

.usecase-integrations {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.usecase-integrations h3 {
    margin-bottom: 8px;
}

.usecase-integration-meta {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--muted);
    font-weight: 600;
}

.usecase-list-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.usecase-list-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(12, 27, 51, 0.05);
}

.usecase-list-item i {
    width: 16px;
    height: 16px;
    color: var(--industry-accent);
    margin-top: 2px;
}

.usecase-kpi-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.usecase-kpi {
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(12, 27, 51, 0.12);
    background: #fff;
    box-shadow: var(--soft-shadow);
}

.usecase-kpi p {
    color: var(--muted);
}

.usecase-implementation {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.usecase-implementation__card {
    border-radius: 18px;
    border: 1px solid rgba(12, 27, 51, 0.12);
    background: #fff;
    padding: 18px;
    box-shadow: var(--soft-shadow);
}

.usecase-implementation__phase {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: var(--industry-accent);
}

.usecase-faq {
    display: grid;
    gap: 16px;
}

.usecase-faq div {
    border-radius: 16px;
    background: rgba(12, 27, 51, 0.05);
    padding: 16px;
}

.usecase-faq p {
    color: var(--muted);
}

.usecase-cta {
    padding: 70px 0;
    background: linear-gradient(120deg, var(--industry-soft), transparent 60%);
}

.usecase-cta__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: center;
}

.usecase-cta__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

@media (max-width: 1024px) {
    .usecase-hero__grid,
    .usecase-cta__grid,
    .usecase-jobs-grid,
    .usecase-integrations,
    .usecase-kpi-grid,
    .usecase-implementation,
    .usecase-list-grid,
    .usecase-convo-grid {
        grid-template-columns: 1fr;
    }

    .usecase-subnav {
        top: 79px;
    }

    .usecase-section,
    .usecase-hero {
        scroll-margin-top: 115px;
    }

    .usecase-cta__actions {
        justify-content: flex-start;
    }
}
