/* Home page bundle: component styles + homepage overrides */

/* Source: index-background-presets.css */
:root {
    --bg-gradient-dark-brand:
        radial-gradient(circle at 0% 0%, rgba(255, 225, 88, 0.34), transparent 28%),
        radial-gradient(circle at 100% 0%, rgba(0, 159, 253, 0.14), transparent 30%),
        linear-gradient(135deg, #101718 0%, #172123 100%);
    --bg-gradient-light-tinted:
        radial-gradient(circle at top right, rgba(255, 225, 88, 0.22), transparent 30%),
        radial-gradient(circle at bottom left, rgba(255, 225, 88, 0.22), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
    --bg-gradient-dark-accent:
        radial-gradient(circle at 8% 0%, rgba(255, 225, 88, 0.16), transparent 30%),
        radial-gradient(circle at 98% 100%, rgba(0, 159, 253, 0.10), transparent 34%),
        linear-gradient(145deg, #101718 0%, #182326 100%);
    --bg-gradient-dark-surface:
        radial-gradient(circle at 6% 0%, rgba(255, 225, 88, 0.16), transparent 28%),
        radial-gradient(circle at 100% 100%, rgba(0, 159, 253, 0.16), transparent 34%),
        linear-gradient(145deg, #101718 0%, #182326 100%);
    --bg-gradient-light-soft:
        radial-gradient(circle at top left, rgba(255, 225, 88, 0.22), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f6f7f8 100%);
    --bg-gradient-dark-quick-brief:
        radial-gradient(circle at 8% 0%, rgba(255, 225, 88, 0.18), transparent 30%),
        radial-gradient(circle at 98% 100%, rgba(0, 159, 253, 0.12), transparent 32%),
        linear-gradient(140deg, #101718 0%, #1a2527 100%);
    --bg-gradient-dark-intense:
        linear-gradient(145deg, #0b0f19 0%, #111827 55%, #0f172a 100%);
    --bg-gradient-dark-tab-active:
        radial-gradient(circle at 100% 0%, rgba(255, 183, 3, 0.18), transparent 45%),
        linear-gradient(140deg, #111827 0%, #0f172a 58%, #1e293b 100%);
    --bg-dark-solid-soft: #0a0f1c;
    --ui-color-ink-900: #101718;
    --ui-color-white: #ffffff;
    --ui-color-yellow: #ffe158;
    --ui-radius-pill: 999px;
    --ui-radius-card-md: 22px;
    --ui-radius-card-lg: 24px;
    --ui-radius-shell: 30px;
    --ui-bg-glass-dark-06: rgba(255, 255, 255, 0.06);
    --ui-bg-glass-dark-08: rgba(255, 255, 255, 0.08);
    --ui-border-glass-dark-14: 1px solid rgba(255, 255, 255, 0.14);
    --ui-border-soft: 1px solid rgba(16, 23, 24, 0.08);
    --ui-border-soft-10: 1px solid rgba(16, 23, 24, 0.1);
    --ui-border-soft-12: 1px solid rgba(16, 23, 24, 0.12);
    --ui-surface-white-72: rgba(255, 255, 255, 0.72);
    --ui-surface-white-78: rgba(255, 255, 255, 0.78);
    --ui-surface-white-88: rgba(255, 255, 255, 0.88);
    --ui-surface-white-92: rgba(255, 255, 255, 0.92);
    --ui-text-on-dark-66: rgba(255, 255, 255, 0.66);
    --ui-text-on-dark-78: rgba(255, 255, 255, 0.78);
    --ui-text-on-dark-86: rgba(255, 255, 255, 0.86);
    --ui-shadow-yellow-glow: 0 0 14px rgba(255, 225, 88, 0.65);
    --ui-shadow-soft-30: 0 12px 30px rgba(16, 23, 24, 0.06);
    --ui-shadow-soft-55: 0 24px 55px rgba(16, 23, 24, 0.08);
    --ui-shadow-soft-60: 0 24px 60px rgba(16, 23, 24, 0.08);
}

.bg-light-tinted-gradient {
    background: var(--bg-gradient-light-tinted);
}

.bg-dark-accent-gradient {
    background: var(--bg-gradient-dark-accent);
}

.home-cta-card__eyebrow,
.home-faqs-intro__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1rem;
    padding: 0.45rem 0.9rem;
    border-radius: var(--ui-radius-pill);
    color: var(--ui-color-ink-900);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.home-cta-card__eyebrow::before,
.home-faqs-intro__eyebrow::before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--ui-color-yellow);
}

/* Source: home-cta.css */
.home-cta-section {
    padding: 1.5rem 0 0;
}

.home-cta-card {
    position: relative;
    overflow: hidden;
    border: var(--ui-border-soft);
    border-radius: 28px;
    background: var(--bg-gradient-dark-brand);
    box-shadow: 0 30px 70px rgba(16, 23, 24, 0.14);
}

.home-cta-card::before {
    content: "";
    position: absolute;
    inset: auto -6% -30% auto;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255, 225, 88, 0.12);
    filter: blur(16px);
}

.home-cta-card__content,
.home-cta-card__aside {
    position: relative;
    z-index: 1;
}

.home-cta-card__eyebrow {
    margin-bottom: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--ui-text-on-dark-86);
    background: var(--ui-bg-glass-dark-08);
    backdrop-filter: blur(12px);
}

.home-cta-card__eyebrow::before {
    width: 0.55rem;
    height: 0.55rem;
    box-shadow: var(--ui-shadow-yellow-glow);
}

.home-cta-card h3,
.home-cta-card p {
    color: #fff;
}

.home-cta-card__copy {
    max-width: 50rem;
    color: var(--ui-text-on-dark-78);
}

.home-cta-card__aside {
    border: var(--ui-border-glass-dark-14);
    border-radius: var(--ui-radius-card-lg);
    background: var(--ui-bg-glass-dark-08);
    backdrop-filter: blur(16px);
}

.home-cta-card__label {
    color: var(--ui-text-on-dark-66);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.home-cta-card__highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
}

.home-cta-card__highlights li {
    padding: 0.7rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.06);
}

.home-cta-card__button .shine-btn {
    min-width: 100%;
}

.home-cta-diagnostic {
    padding: 0.5rem 0 2rem;
}

.home-cta-diagnostic__wrap {
    position: relative;
    overflow: hidden;
    border: var(--ui-border-soft);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 252, 0.96) 100%);
    box-shadow: var(--ui-shadow-soft-60);
}

.home-cta-diagnostic__wrap::before {
    content: "";
    position: absolute;
    inset: -15% auto auto -8%;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255, 225, 88, 0.22);
    filter: blur(24px);
}

.home-cta-diagnostic__wrap::after {
    content: "";
    position: absolute;
    inset: auto -8% -24% auto;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(0, 159, 253, 0.12);
    filter: blur(30px);
}

.home-cta-diagnostic__hero,
.home-cta-diagnostic__points,
.home-cta-diagnostic__footer {
    position: relative;
    z-index: 1;
}

.home-cta-diagnostic__eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.45rem 0.85rem;
    border-radius: var(--ui-radius-pill);
    background: rgba(16, 23, 24, 0.05);
    color: var(--ui-color-ink-900);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.home-cta-diagnostic__hero {
    gap: 1.5rem;
}

.home-cta-diagnostic__copy {
    max-width: 46rem;
}

.home-cta-diagnostic__copy p {
    color: #526067;
}

.home-cta-diagnostic__cta {
    min-width: 260px;
    max-width: 320px;
    padding: 1.25rem;
    border: var(--ui-border-soft);
    border-radius: 22px;
    background: var(--ui-surface-white-78);
    backdrop-filter: blur(10px);
    box-shadow: var(--ui-shadow-soft-30);
}

.home-cta-diagnostic__cta p {
    color: #5a6870;
}

.home-cta-diagnostic__point {
    height: 100%;
    padding: 1.15rem 1.1rem;
    border: var(--ui-border-soft);
    border-radius: 22px;
    background: var(--ui-surface-white-72);
    backdrop-filter: blur(10px);
}

.home-cta-diagnostic__point-label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.8rem;
    padding: 0.35rem 0.7rem;
    border-radius: var(--ui-radius-pill);
    background: var(--ui-color-ink-900);
    color: var(--ui-color-white);
}

.home-cta-diagnostic__point p {
    color: #4d5c63;
}

.home-cta-diagnostic__footer {
    border-top: var(--ui-border-soft);
}

.home-cta-diagnostic__button .shine-btn {
    width: 100%;
    justify-content: center;
}

@media (max-width: 991.98px) {
    .home-cta-section {
        padding-top: 0;
    }

    .home-cta-diagnostic__cta {
        min-width: 100%;
        max-width: none;
    }
}

/* Source: home-case-studies.css */
.home-case-study-section,
.home-case-inline-section {
    padding-top: 0.75rem;
    padding-bottom: 0.45rem;
}

.home-case-inline-section {
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 225, 88, 0.08), transparent 22%),
        radial-gradient(circle at 88% 20%, rgba(26, 168, 215, 0.05), transparent 20%),
        linear-gradient(180deg, #fcfcf8 0%, #f8fafc 100%);
}

.home-case-study-shell {
    border: var(--ui-border-soft-10);
    border-radius: 30px;
    background:
        radial-gradient(circle at 0% 0%, rgba(94, 74, 246, 0.14), transparent 34%),
        radial-gradient(circle at 100% 100%, rgba(94, 74, 246, 0.08), transparent 35%),
        linear-gradient(180deg, #fff 0%, #f8f8fb 100%);
    box-shadow: var(--ui-shadow-soft-60);
}

.home-case-study-slide,
.home-case-inline-slide {
    display: none;
}

.home-case-study-slide.is-active,
.home-case-inline-slide.is-active {
    display: block;
    animation: caseSlideIn 0.45s ease;
}

@keyframes caseSlideIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.home-case-study__label,
.home-case-inline-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.85rem;
    border-radius: var(--ui-radius-pill);
    border: 1px solid rgba(94, 74, 246, 0.2);
    background: rgba(94, 74, 246, 0.07);
    color: #5e4af6;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
}

.home-case-inline-label {
    border-color: rgba(255, 225, 88, 0.55);
    background: rgba(255, 225, 88, 0.36);
    color: #111827;
    font-size: 0.83rem;
    padding: 0.52rem 0.95rem;
}

.home-case-study__label::before,
.home-case-inline-label::before {
    content: "";
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 50%;
    background: #5e4af6;
}

.home-case-inline-label::before {
    background: #ffe158;
}

.home-case-study__metric {
    padding: 0.5rem 0;
}

.ui-metric-accent {
    position: relative;
    display: inline-block;
    width: fit-content;
    padding-bottom: 0.16rem;
    line-height: 1;
}

.ui-metric-accent::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.05rem;
    height: 3px;
    border-radius: 999px;
    transform: skewX(-18deg);
    background: linear-gradient(
        90deg,
        rgba(var(--metric-accent-rgb, var(--primary-1-rgb)), 0.95) 0%,
        rgba(var(--metric-accent-rgb, var(--primary-1-rgb)), 0.42) 55%,
        rgba(var(--metric-accent-rgb, var(--primary-1-rgb)), 0.9) 100%
    );
}

.home-case-study__metric-value {
    --metric-accent-rgb: var(--primary-1-rgb);
    font-size: clamp(1.65rem, 2.5vw, 2.4rem);
    font-weight: 700;
    color: #5e4af6;
}

.home-case-inline-section .home-case-study__metric-value {
    color: #111827;
}

.home-case-study__metric h5 {
    margin-top: 0.28rem;
    color: var(--text-700);
    font-size: var(--body-copy-2xs);
    line-height: 1.25;
    font-weight: 700;
}

.home-case-study__visual,
.home-case-inline-image-wrap {
    border-radius: 16px;
    border: 1px solid rgba(15, 28, 61, 0.1);
    background: #fff;
    box-shadow: 0 14px 30px rgba(15, 28, 61, 0.12);
    overflow: hidden;
}

.home-case-inline-image-wrap {
    border-color: rgba(255, 225, 88, 0.45);
    box-shadow: 0 14px 30px rgba(255, 225, 88, 0.22);
    aspect-ratio: 16 / 10;
}

.home-case-study__image,
.home-case-inline-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-case-study-controls,
.home-case-inline-controls {
    border-top: 1px solid rgba(16, 23, 24, 0.08);
    padding-top: 0.8rem;
}

.home-case-study-dots,
.home-case-inline-dots {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.home-case-study-dot,
.home-case-inline-dot {
    width: 9px;
    height: 9px;
    border: none;
    border-radius: 50%;
    background: #cfd6e6;
    transition: all 0.2s ease;
}

.home-case-study-dot.is-active,
.home-case-inline-dot.is-active {
    width: 26px;
    border-radius: 999px;
    background: #5e4af6;
}

.home-case-inline-dot.is-active {
    background: #ffe158;
}

.home-case-inline-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #1d2848;
}

.home-case-inline-view-all__arrow {
    position: relative;
    width: 14px;
    height: 1px;
    background: currentColor;
    transition: width 0.22s ease;
}

.home-case-inline-view-all__arrow::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
}

.home-case-inline-view-all:hover {
    color: #111827;
}

.home-case-inline-view-all:hover .home-case-inline-view-all__arrow {
    width: 24px;
}

.home-case-inline-outcome {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.38rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 225, 88, 0.6);
    background: rgba(255, 225, 88, 0.28);
    color: #111827;
    font-size: 0.86rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-weight: 600;
}

.home-case-inline-proof {
    color: #1f2937;
    font-size: 0.84rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.home-case-inline-industry {
    background: #1f2937;
    color: #fff9df;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.home-case-inline-cta {
    background: #0f172a;
    border: 1px solid #0f172a;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.home-case-inline-cta:hover {
    background: #020617;
    border-color: #020617;
    color: #ffffff;
}

.home-case-inline-cta__arrow {
    position: relative;
    width: 14px;
    height: 1.5px;
    background: currentColor;
    transition: width 0.22s ease;
}

.home-case-inline-cta__arrow::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
}

.home-case-inline-cta:hover .home-case-inline-cta__arrow {
    width: 24px;
}

@media (max-width: 991.98px) {
    .home-case-study-shell {
        border-radius: 22px;
    }
}

.section-theme-dark .blog-section__intro h6 {
    color: var(--text-on-dark-muted);
}

.section-theme-dark .blog-section__intro h3 {
    color: var(--text-100);
}

.section-theme-dark .blog-section__intro p.medium {
    color: var(--text-100);
}

.section-theme-dark .blogsCarousel .owl-nav [class*="owl-"] {
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.9);
    background-color: var(--ui-bg-glass-dark-08);
}

/* Source: home-pathfinder-dark-card.css */
.pathfinder-dark-card {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 26px;
    background: var(--bg-gradient-dark-surface);
    box-shadow: 0 24px 55px rgba(16, 23, 24, 0.25);
}

.pathfinder-dark-chip {
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--ui-text-on-dark-86);
    background: var(--ui-bg-glass-dark-08);
    border-radius: var(--ui-radius-pill);
    padding: 0.38rem 0.75rem;
    font-weight: 500;
}

.pathfinder-dark-chip:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.14);
}

.pathfinder-dark-chip.is-active {
    color: var(--ui-color-ink-900);
    border-color: var(--ui-color-yellow);
    background: var(--ui-color-yellow);
}

.pathfinder-dark-result {
    border: var(--ui-border-glass-dark-14);
    border-radius: 18px;
    background: var(--ui-bg-glass-dark-08);
}

.pathfinder-dark-trust {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
}

.pathfinder-dark-trust__avatars {
    position: relative;
    width: 64px;
    height: 52px;
    flex: 0 0 64px;
}

.pathfinder-dark-trust__avatar {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.75);
    position: absolute;
    top: 2px;
    left: 0;
}

.pathfinder-dark-trust__avatar--stacked {
    left: 22px;
    top: 8px;
}

/* Source: home-ai-native-impact.css */
.ai-native-section {
    --ai-bg: var(--color-white);
    --ai-bg-alt: var(--color-white);
    --ai-text: var(--text-900);
    --ai-muted: var(--text-700);
    --ai-muted-strong: var(--text-800);
    --ai-muted-soft: var(--text-600);
    --ai-muted-subtle: var(--text-500);
    --ai-primary-1: var(--primary-1);
    --ai-primary-1-rgb: var(--primary-1-rgb);
    --ai-primary-2: var(--primary-2);
    --ai-primary-2-rgb: var(--primary-2-rgb);
    --ai-accent: var(--primary-1);
    --ai-accent-strong: var(--primary-1-600);
    --ai-accent-rgb: var(--primary-1-rgb);
    --body-copy-2xs: clamp(0.68rem, 0.66rem + 0.08vw, 0.74rem);

    position: relative;
    overflow: hidden;
    background: var(--color-white);
}

.ai-native-section::after {
    display: none;
}

.ai-native-hero__content {
    padding: clamp(1rem, 1.3vw, 1.25rem);
    border: 1px solid rgba(var(--ai-accent-rgb), 0.16);
    border-radius: 20px;
    background: rgba(var(--color-white-rgb), 0.78);
    backdrop-filter: blur(4px);
}

.ai-native-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    border: 1px solid var(--ai-accent);
    background: var(--color-white);
    font-size: var(--body-copy-xs);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-dark-1);
}

.ai-native-eyebrow::before {
    content: "";
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--ai-accent);
    box-shadow: 0 0 14px rgba(var(--ai-accent-rgb), 0.45);
}

.ai-native-title {
    margin: 0;
    color: var(--ai-text);
    font-size: var(--fs-lg);
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.ai-native-visual {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
}

.ai-native-proof {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.25rem;
    padding: 0.55rem 0;
}

.ai-native-proof--secondary {
    border-top: 0;
}

.ai-native-proof__item {
    padding: 0.35rem 0.75rem 0.3rem;
    border-right: 1px solid rgba(var(--ai-primary-2-rgb), 0.12);
}

.ai-native-proof__item:last-child {
    border-right: 0;
}

.ai-native-proof__value {
    --metric-accent-rgb: var(--ai-accent-rgb);
    color: var(--primary-dark-1);
    font-size: var(--fs-md);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.ai-native-proof__label {
    margin-top: 0.28rem;
    color: var(--ai-muted-strong);
    font-size: var(--body-copy-xs);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    line-height: 1.25;
    font-weight: 700;
}

.ai-native-tags--below span {
    border-radius: 999px;
    padding: 0.34rem 0.6rem;
    border: 1px solid rgba(var(--ai-accent-rgb), 0.2);
    background: rgba(var(--ai-accent-rgb), 0.1);
    color: var(--ai-accent-strong);
    font-size: var(--body-copy-2xs);
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.ai-native-tags--below span:hover {
    transform: translateY(-2px);
    background: var(--ai-accent);
    border-color: var(--ai-accent);
    color: var(--color-white);
    box-shadow: 0 8px 16px rgba(var(--ai-accent-rgb), 0.26);
}

.ai-native-calculator {
    position: relative;
    z-index: 1;
    border: 1px solid rgba(var(--ai-accent-rgb), 0.2);
    border-radius: 22px;
    padding: clamp(0.95rem, 1.8vw, 1.3rem);
    background: var(--color-white);
    box-shadow: 0 16px 30px rgba(var(--ai-primary-2-rgb), 0.1);
}

.ai-native-calculator__eyebrow {
    font-size: var(--body-copy-xs);
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-weight: 700;
    color: var(--ai-accent-strong);
}

.ai-native-calculator__title {
    color: var(--ai-text);
    font-size: var(--fs-md);
    line-height: 1.2;
}

.ai-native-calculator__text {
    color: var(--ai-muted-soft);
    font-size: var(--body-copy);
    line-height: 1.5;
}

.ai-native-calculator__intro,
.ai-native-calculator__result-intro {
    min-height: 110px;
}

.ai-native-control {
    display: block;
    padding: 0.6rem 0.65rem;
    border-radius: 12px;
    border: 1px solid rgba(var(--ai-primary-2-rgb), 0.1);
    background: rgba(var(--color-white-rgb), 0.88);
}

.ai-native-control__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.45rem;
}

.ai-native-control__head span {
    font-size: var(--body-copy-sm);
    color: var(--ai-muted-strong);
    font-weight: 600;
}

.ai-native-control__head strong {
    color: var(--ai-accent-strong);
    font-size: var(--body-copy-sm);
}

.ai-native-control input[type="range"] { accent-color: var(--ai-accent); }

.ai-native-calculator__result-eyebrow {
    font-size: var(--body-copy-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--ai-accent-strong);
}

.ai-native-calculator__result-title {
    color: var(--ai-text);
    font-size: var(--body-copy-lg);
    line-height: 1.28;
}

.ai-native-calculator__result-text {
    color: var(--ai-muted-soft);
    font-size: var(--body-copy-sm);
    line-height: 1.45;
}

.ai-native-output-card {
    padding: 0.74rem 0.78rem;
    border-radius: 14px;
    border: 1px solid rgba(var(--ai-primary-2-rgb), 0.1);
    background: var(--color-white);
}

.ai-native-output-card__value {
    color: var(--ai-accent-strong);
    font-size: var(--fs-sm);
    font-weight: 800;
    line-height: 1.1;
}

.ai-native-output-card__label {
    color: var(--ai-muted-strong);
    font-size: var(--body-copy-xs);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    line-height: 1.25;
}

.ai-native-calculator__note {
    font-size: var(--body-copy-xs);
    color: var(--ai-muted-soft);
}

.ai-native-calculator__cta {
    padding: 0.85rem 0.9rem;
    border-radius: 14px;
    border: 1px solid rgba(var(--ai-accent-rgb), 0.2);
    background: var(--color-white);
}

.ai-native-calculator__cta-title {
    color: var(--ai-text);
    font-size: var(--body-copy);
    font-weight: 700;
}

.ai-native-calculator__cta-text {
    color: var(--ai-muted-strong);
    font-size: var(--body-copy-sm);
    line-height: 1.45;
}

.ai-native-calculator__cta--dark {
    border: 1px solid rgba(var(--color-white-rgb), 0.12);
    background:
        radial-gradient(circle at 100% 0%, rgba(var(--ai-primary-1-rgb), 0.18), transparent 45%),
        linear-gradient(140deg, var(--surface-dark-900) 0%, var(--ai-text) 58%, var(--surface-dark-800) 100%);
}

.ai-native-calculator__cta--dark .ai-native-calculator__cta-title {
    color: var(--text-100);
}

.ai-native-calculator__cta--dark .ai-native-calculator__cta-text {
    color: var(--text-on-dark-muted);
}

.ai-native-calculator__cta-trust {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.ai-native-calculator__cta--compact .ai-native-calculator__cta-trust {
    align-items: flex-start;
    gap: 0.6rem;
}

.ai-native-calculator__cta-trust--line {
    position: relative;
    padding: 0.6rem 0;
}

.ai-native-calculator__cta-trust--line::before,
.ai-native-calculator__cta-trust--line::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(var(--text-on-dark-line-rgb), 0.7) 0%, rgba(var(--text-on-dark-line-rgb), 0.45) 55%, rgba(var(--text-on-dark-line-rgb), 0) 100%);
    pointer-events: none;
}

.ai-native-calculator__cta-trust--line::before {
    top: 0;
}

.ai-native-calculator__cta-trust--line::after {
    bottom: 0;
}

.ai-native-calculator__cta-avatars {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.ai-native-calculator__cta-avatars img {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    object-fit: cover;
    border: 2px solid rgba(var(--ai-primary-2-rgb), 0.85);
    box-shadow: 0 4px 10px rgba(var(--ai-primary-2-rgb), 0.28);
}

.ai-native-calculator__cta-avatars img + img {
    margin-left: -10px;
}

.ai-native-calculator__cta-trust p {
    color: var(--text-on-dark-muted);
    font-size: var(--body-copy-xs);
    line-height: 1.35;
    flex: 1 1 auto;
    min-width: 0;
}

.ai-native-gated-calculator {
    position: relative;
    z-index: 1;
    border-top: 0;
}

.ai-native-gated-panel {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 26px;
    background:
        radial-gradient(circle at 6% 0%, rgba(255, 225, 88, 0.14), transparent 28%),
        radial-gradient(circle at 100% 100%, rgba(0, 159, 253, 0.14), transparent 34%),
        linear-gradient(145deg, #101718 0%, #182326 100%);
    box-shadow: 0 24px 55px rgba(16, 23, 24, 0.28);
}

.ai-native-gated-shell {
    position: relative;
    overflow: hidden;
    padding: 0.65rem 0.8rem;
}

.ai-native-gated-shell::before {
    display: none;
}

.ai-native-gated-shell__left,
.ai-native-gated-shell__right {
    position: relative;
    z-index: 1;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
}

.ai-native-gated-shell__right {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.ai-native-gated-copy {
    position: relative;
    overflow: hidden;
    padding: 0.3rem 0.45rem;
}

.ai-native-gated-panel .ai-native-calculator__eyebrow {
    color: rgba(236, 242, 244, 0.74);
}

.ai-native-gated-panel .ai-native-calculator__title {
    color: var(--color-white);
}

.ai-native-gated-panel .ai-native-calculator__text {
    color: rgba(224, 232, 236, 0.72);
}

.ai-native-gated-promo__list {
    display: grid;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

.ai-native-gated-promo__item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.8rem 0.9rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.ai-native-gated-promo__item i {
    color: #ffd45d;
    font-size: 0.9rem;
    margin-top: 0.2rem;
    flex: 0 0 auto;
}

.ai-native-gated-promo__item span {
    color: rgba(230, 238, 240, 0.78);
    font-size: var(--body-copy-sm);
    line-height: 1.6;
    font-weight: 500;
}

.ai-native-gated-promo__tag {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid rgba(var(--ai-accent-rgb), 0.24);
    background: rgba(var(--ai-accent-rgb), 0.09);
    color: var(--ai-accent-strong);
    font-size: var(--body-copy-xs);
    letter-spacing: 0.02em;
    font-weight: 700;
    padding: 0.36rem 0.68rem;
    position: relative;
    z-index: 1;
}

.ai-native-gated-time-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(241, 247, 249, 0.86);
    font-size: var(--body-copy-xs);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.3rem 0.62rem;
}

.ai-native-gated-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.ai-native-gated-steps span {
    border-radius: 999px;
    border: 1px solid rgba(var(--ai-primary-2-rgb), 0.14);
    background: rgba(var(--color-white-rgb), 0.82);
    color: var(--ai-muted-soft);
    font-size: var(--body-copy-xs);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0.25rem 0.58rem;
}

.ai-native-gated-steps span.is-active {
    color: var(--ai-accent-strong);
    border-color: rgba(var(--ai-accent-rgb), 0.26);
    background: rgba(var(--ai-accent-rgb), 0.11);
}

.ai-native-gated-group__title {
    color: rgba(236, 242, 244, 0.86);
    font-size: var(--body-copy-xs);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ai-native-gated-group__divider {
    border-top: 1px dashed rgba(255, 255, 255, 0.12);
}

.ai-native-gated-form {
    padding: 1.15rem;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
}

.ai-native-gated-form__intro {
    color: rgba(224, 232, 236, 0.68);
    font-size: var(--body-copy-sm);
    line-height: 1.5;
}

.ai-native-gated-field {
    height: 100%;
}

.ai-native-gated-field .form-label {
    color: rgba(236, 242, 244, 0.8);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ai-native-gated-field .form-control,
.ai-native-gated-field .form-select {
    padding: 0.62rem 0.9rem;
    font-size: 0.98rem;
    font-weight: 500;
}

.ai-native-advanced-toggle {
    min-height: auto;
    padding: 0 !important;
    border: 0;
    background: transparent;
    color: rgba(248, 250, 252, 0.92);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: none;
}

.ai-native-advanced-toggle:hover,
.ai-native-advanced-toggle:focus {
    color: var(--color-white);
    text-decoration: none;
    background: transparent;
    box-shadow: none;
    outline: none;
}

.ai-native-advanced-toggle .bi {
    font-size: var(--body-copy-xs);
    transition: transform 0.2s ease, color 0.2s ease;
}

.ai-native-advanced-toggle[aria-expanded="true"] {
    color: var(--color-white);
    background: transparent;
}

.ai-native-advanced-toggle[aria-expanded="true"] .bi {
    transform: rotate(90deg);
}

.ai-native-gated-submit {
    min-height: 56px;
    font-size: var(--body-copy-sm) !important;
    line-height: 1.2 !important;
    border-radius: 999px;
    padding: 0.95rem 1.25rem !important;
    --shine-bg: linear-gradient(135deg, #ffe158 0%, #f6c945 100%);
    --shine-text: #111111;
    --shine-border: 1px solid rgba(255, 225, 88, 0.2);
    --shine-hover-border: 1px solid rgba(255, 225, 88, 0.32);
    --shine-arrow: #111111;
    --shine-hover-arrow: #111111;
    --shine-hover-text: #111111;
    --shine-hover-bg: linear-gradient(135deg, #f5d74f 0%, #efbf32 100%);
    box-shadow: 0 18px 34px rgba(255, 193, 55, 0.22);
}

.ai-native-gated-submit .shine-btn-text {
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.86rem;
}

.ai-native-gated-submit.is-loading {
    opacity: 0.85;
    pointer-events: none;
}

.ai-native-gated-footnote {
    color: rgba(224, 232, 236, 0.62);
    font-size: var(--body-copy-xs);
    line-height: 1.5;
    text-align: center;
}

.ai-native-gated-disclaimer {
    color: var(--ai-muted-subtle);
    font-size: var(--body-copy-2xs);
    line-height: 1.35;
    text-align: left;
}

.ai-native-gated-modal__dialog {
    max-width: 760px;
}

.ai-native-gated-modal__content {
    border: 1px solid rgba(var(--ai-accent-rgb), 0.22);
    border-radius: 20px;
    background: var(--color-white);
    box-shadow: 0 26px 50px rgba(var(--ai-primary-2-rgb), 0.22);
}

.ai-native-gated-modal .modal-header {
    padding: 1rem 1rem 0.25rem;
}

.ai-native-gated-modal .modal-body {
    padding: 0.65rem 1rem 1rem;
}

.ai-native-gated-modal__title {
    color: var(--ai-text);
    font-size: var(--body-copy-lg);
    font-weight: 700;
    letter-spacing: 0.01em;
}

.ai-native-gated-loader {
    display: grid;
    place-items: center;
    min-height: 250px;
    padding: 0.9rem 0.75rem;
    text-align: center;
}

.ai-native-gated-loader__viz {
    position: relative;
    width: 122px;
    height: 122px;
    display: grid;
    place-items: center;
    margin-bottom: 0.9rem;
}

.ai-native-gated-loader__ring {
    position: absolute;
    border-radius: 999px;
    border: 2px solid transparent;
}

.ai-native-gated-loader__ring--outer {
    inset: 0;
    border-top-color: rgba(var(--ai-accent-rgb), 0.9);
    border-right-color: rgba(var(--ai-accent-rgb), 0.55);
    animation: ai-gated-spin-cw 1.45s linear infinite;
}

.ai-native-gated-loader__ring--inner {
    inset: 20px;
    border-left-color: rgba(var(--ai-primary-1-rgb), 0.9);
    border-bottom-color: rgba(var(--ai-primary-1-rgb), 0.55);
    animation: ai-gated-spin-ccw 1.15s linear infinite;
}

.ai-native-gated-loader__core {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(var(--ai-accent-rgb), 0.5);
    background:
        linear-gradient(145deg, rgba(var(--ai-primary-2-rgb), 0.96) 0%, rgba(var(--surface-dark-800-rgb), 0.98) 100%);
    box-shadow: 0 0 0 10px rgba(var(--ai-accent-rgb), 0.1), 0 0 22px rgba(var(--ai-accent-rgb), 0.24);
}

.ai-native-gated-loader__core::before {
    content: "AI";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--text-on-dark-soft);
    font-size: var(--body-copy-xs);
    font-weight: 800;
    letter-spacing: 0.08em;
}

.ai-native-gated-loader__core::after {
    content: "";
    position: absolute;
    left: 6px;
    right: 6px;
    height: 2px;
    border-radius: 999px;
    background: rgba(var(--ai-primary-1-rgb), 0.9);
    box-shadow: 0 0 10px rgba(var(--ai-primary-1-rgb), 0.6);
    animation: ai-gated-chip-scan 1.45s ease-in-out infinite;
}

.ai-native-gated-loader__copy {
    max-width: 520px;
}

.ai-native-gated-loader__title {
    color: var(--ai-text);
    font-size: var(--body-copy-xs);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.ai-native-gated-loader__text {
    color: var(--ai-muted-strong);
    font-size: var(--body-copy-sm);
    line-height: 1.35;
}

@keyframes ai-gated-spin-cw {
    to { transform: rotate(360deg); }
}

@keyframes ai-gated-spin-ccw {
    to { transform: rotate(-360deg); }
}

@keyframes ai-gated-chip-scan {
    0% { top: 8px; opacity: 0.15; }
    50% { top: 21px; opacity: 1; }
    100% { top: 34px; opacity: 0.15; }
}

.ai-native-money-preview {
    border: 1px solid rgba(var(--ai-accent-rgb), 0.24);
    border-radius: 14px;
    padding: 0.85rem 0.95rem;
    text-align: center;
    background: var(--color-white);
}

.ai-native-gated-preview .ai-native-money-preview {
    position: relative;
    overflow: hidden;
    border-color: rgba(var(--ai-primary-2-rgb), 0.08);
    border-radius: 22px;
    padding: 1.25rem 1.2rem;
    background:
        radial-gradient(circle at top left, rgba(255, 225, 88, 0.2), transparent 28%),
        linear-gradient(145deg, #101215 0%, #1d2329 100%);
    box-shadow: 0 20px 42px rgba(var(--ai-primary-2-rgb), 0.22);
}

.ai-native-gated-preview .ai-native-money-preview::before {
    content: "";
    position: absolute;
    inset: auto -12% -40% auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 225, 88, 0.18), transparent 68%);
    pointer-events: none;
}

.ai-native-gated-preview .ai-native-money-preview__label {
    position: relative;
    color: rgba(255, 255, 255, 0.68);
    letter-spacing: 0.1em;
}

.ai-native-gated-preview .ai-native-money-preview__value {
    position: relative;
    color: var(--primary-1, #ffe158);
    font-size: clamp(1.8rem, 1.35rem + 1vw, 2.5rem);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 0.55rem !important;
}

.ai-native-gated-preview .ai-native-money-preview__note {
    position: relative;
    max-width: 28rem;
    margin-inline: auto;
    color: rgba(255, 255, 255, 0.66);
    line-height: 1.5;
}

.ai-native-gated-full .ai-native-money-preview {
    position: relative;
    overflow: hidden;
    border-color: rgba(var(--ai-primary-2-rgb), 0.08);
    border-radius: 22px;
    padding: 1.25rem 1.2rem;
    background:
        radial-gradient(circle at top left, rgba(255, 225, 88, 0.2), transparent 28%),
        linear-gradient(145deg, #101215 0%, #1d2329 100%);
    box-shadow: 0 20px 42px rgba(var(--ai-primary-2-rgb), 0.22);
}

.ai-native-gated-full .ai-native-money-preview::before {
    content: "";
    position: absolute;
    inset: auto -12% -40% auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 225, 88, 0.18), transparent 68%);
    pointer-events: none;
}

.ai-native-gated-full .ai-native-money-preview__label {
    position: relative;
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: 0.1em;
}

.ai-native-gated-full .ai-native-money-preview__value {
    position: relative;
    color: var(--primary-1, #ffe158);
    font-size: clamp(1.8rem, 1.35rem + 1vw, 2.5rem);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 0.55rem !important;
}

.ai-native-gated-full .ai-native-money-preview__note {
    position: relative;
    max-width: 30rem;
    margin-inline: auto;
    color: rgba(255, 255, 255, 0.66);
    line-height: 1.5;
}

.ai-native-money-preview__label {
    color: var(--ai-muted-strong);
    font-size: var(--body-copy-xs);
    letter-spacing: 0.08em;
    font-weight: 700;
    text-transform: uppercase;
}

.ai-native-money-preview__value {
    color: var(--ai-accent-strong);
    font-size: var(--fs-lg);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.ai-native-money-preview__note {
    color: var(--ai-muted-soft);
    font-size: var(--body-copy-xs);
    line-height: 1.35;
}

.ai-native-locked-metrics {
    border: 1px dashed rgba(var(--ai-primary-2-rgb), 0.18);
    border-radius: 12px;
    padding: 0.7rem 0.75rem;
    background: rgba(var(--color-white-rgb), 0.82);
}

.ai-native-locked-metrics__title {
    color: var(--ai-text);
    font-size: var(--body-copy-xs);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ai-native-locked-metrics span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid rgba(var(--ai-primary-2-rgb), 0.14);
    background: rgba(var(--ai-primary-1-rgb), 0.1);
    color: var(--ai-muted-strong);
    font-size: var(--body-copy-xs);
    font-weight: 600;
    padding: 0.28rem 0.58rem;
}

.ai-native-gated-results-cta {
    padding-top: 0.35rem;
}

.ai-native-results-table {
    border: 1px solid rgba(var(--ai-primary-2-rgb), 0.08);
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}

.ai-native-results-table__table {
    --bs-table-bg: transparent;
    --bs-table-border-color: rgba(var(--ai-primary-2-rgb), 0.08);
}

.ai-native-results-table__table tbody tr:last-child > * {
    border-bottom: 0;
}

.ai-native-results-table__table th,
.ai-native-results-table__table td {
    padding: 0.95rem 1rem;
    vertical-align: middle;
}

.ai-native-results-table__table th {
    width: 68%;
    color: var(--ai-muted-strong);
    font-size: var(--body-copy-sm);
    font-weight: 600;
    background: rgba(var(--ai-primary-2-rgb), 0.015);
}

.ai-native-results-table__table td {
    color: var(--ai-text);
    font-size: var(--body-copy);
    font-weight: 700;
    text-align: right;
    letter-spacing: -0.01em;
}

.ai-native-gated-results-cta .ai-native-cta-actions__item .shine-btn,
.ai-native-gated-results-cta .ai-native-cta-actions__item .shine-btn-black {
    width: 100%;
}

.ai-native-gated-results-cta__title {
    color: var(--ai-text);
    font-size: var(--body-copy);
    font-weight: 700;
    line-height: 1.3;
}

.ai-native-gated-results-cta__text {
    color: var(--ai-muted-strong);
    font-size: var(--body-copy-sm);
    line-height: 1.45;
}

.ai-native-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.ai-native-cta-actions__item {
    flex: 1 1 240px;
    min-width: 0;
}

.ai-native-cta-actions__item--wide {
    flex: 1 1 100%;
    min-width: 0;
}

.ai-native-cta-actions .shine-btn {
    width: 100%;
    max-width: 100%;
}

.ai-native-cta-actions .shine-btn .shine-btn-text {
    width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
    justify-content: center;
}

.ai-native-gated-panel__title {
    color: var(--ai-text);
    font-size: var(--body-copy-sm);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ai-native-gated-shell .form-control,
.ai-native-gated-shell .form-select {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: rgba(10, 16, 19, 0.62);
    color: rgba(248, 250, 252, 0.94);
    font-size: 0.98rem;
    box-shadow: none;
}


.ai-native-gated-shell .input-group-text {
    padding: 0.62rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(236, 242, 244, 0.76);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ai-native-gated-shell .input-group > .input-group-text:first-child {
    border-top-left-radius: 14px;
    border-bottom-left-radius: 14px;
}

.ai-native-gated-shell .input-group > .input-group-text:last-child {
    border-top-right-radius: 14px;
    border-bottom-right-radius: 14px;
}

.ai-native-gated-shell .input-group > .form-control:not(:first-child),
.ai-native-gated-shell .input-group > .form-select:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.ai-native-gated-shell .input-group > .form-control:not(:last-child),
.ai-native-gated-shell .input-group > .form-select:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.ai-native-gated-shell .form-control:focus,
.ai-native-gated-shell .form-select:focus {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(10, 16, 19, 0.72);
    box-shadow: none;
}

.ai-native-gated-shell .form-control::placeholder {
    color: rgba(224, 232, 236, 0.4);
}

.ai-native-gated-shell .form-select {
    --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba(241,247,249,0.78)' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.ai-native-gated-shell input[type="number"],
.ai-native-gated-modal input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.ai-native-gated-shell input[type="number"]::-webkit-outer-spin-button,
.ai-native-gated-shell input[type="number"]::-webkit-inner-spin-button,
.ai-native-gated-modal input[type="number"]::-webkit-outer-spin-button,
.ai-native-gated-modal input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Keep validation borders/messages, but remove Bootstrap state icons. */
.ai-native-gated-lead .form-control.is-valid,
.ai-native-gated-lead .form-control.is-invalid,
.ai-native-gated-lead.was-validated .form-control:valid,
.ai-native-gated-lead.was-validated .form-control:invalid {
    background-image: none !important;
    padding-right: 0.75rem !important;
}

.ai-native-gated-lead .form-select,
.ai-native-gated-lead .form-select.is-valid,
.ai-native-gated-lead .form-select.is-invalid,
.ai-native-gated-lead.was-validated .form-select:valid,
.ai-native-gated-lead.was-validated .form-select:invalid {
    --bs-form-select-bg-icon: none;
    background-image: var(--bs-form-select-bg-img) !important;
    padding-right: 2.25rem !important;
    background-position: right 0.75rem center !important;
    background-size: 16px 12px !important;
}

.ai-native-gated-lead .btn-primary {
    min-height: 46px;
    border: 1px solid #111111;
    background: linear-gradient(135deg, #111111 0%, #2a2a2a 100%);
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(var(--ai-primary-2-rgb), 0.12);
}

.ai-native-gated-lead .btn-primary:hover,
.ai-native-gated-lead .btn-primary:focus {
    border-color: #2a2a2a;
    background: linear-gradient(135deg, #222222 0%, #3a3a3a 100%);
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(var(--ai-primary-2-rgb), 0.12);
}

.ai-native-gated-success {
    color: var(--ai-text);
    font-size: var(--body-copy-sm);
    font-weight: 600;
}

.ai-native-panel {
    border: 1px solid rgba(var(--ai-primary-2-rgb), 0.12);
    border-radius: 20px;
    background: var(--color-white);
    padding: clamp(0.95rem, 1.2vw, 1.15rem);
    box-shadow: 0 12px 24px rgba(var(--ai-primary-2-rgb), 0.08);
}

.ai-native-panel__head {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--ai-text);
    font-size: var(--body-copy-sm);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ai-native-panel__pulse {
    width: 0.48rem;
    height: 0.48rem;
    border-radius: 50%;
    background: var(--ai-accent);
}

.ai-native-panel__live {
    margin-left: auto;
    font-size: var(--body-copy-xs);
    font-weight: 700;
    letter-spacing: 0.09em;
    color: var(--primary-1-700);
    text-transform: uppercase;
}

.ai-native-lanes {
    display: grid;
    gap: 0.4rem;
}

.ai-native-lane {
    border: 0;
    border-bottom: 1px solid rgba(var(--ai-primary-2-rgb), 0.12);
    border-radius: 0;
    background: transparent;
    padding: 0.25rem 0 0.5rem;
    transition: background-color 0.2s ease;
}

.ai-native-lanes .ai-native-lane:last-of-type {
    border-bottom: 0;
    padding-bottom: 0.2rem;
}

.ai-native-lane__title {
    color: var(--surface-dark-800);
    font-size: var(--body-copy-sm);
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.ai-native-lane__state {
    color: var(--ai-accent);
    font-size: var(--body-copy-xs);
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    white-space: nowrap;
}

.ai-native-lane__meter {
    min-width: 110px;
    height: 6px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(var(--ai-accent-rgb), 0.12);
}

.ai-native-lane__meter span {
    display: block;
    width: var(--w, 0%);
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--ai-accent) 0%, var(--primary-1) 55%, var(--primary-1) 100%);
}

.ai-native-impact-inline {
    display: flex;
    gap: 0.95rem;
    border-bottom: 1px solid rgba(var(--ai-primary-2-rgb), 0.12);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.ai-native-impact-inline:hover {
    transform: translateX(3px);
    background-color: rgba(var(--ai-accent-rgb), 0.04);
}

.ai-native-impact-inline__icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-white);
    background: var(--primary-dark-1);
}

.ai-native-impact-inline__content {
    flex: 1 1 auto;
}

.ai-native-impact-inline__headline {
    font-size: var(--body-copy-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary-dark-1);
}

.ai-native-impact-inline .small {
    color: var(--ai-muted-strong);
    font-size: var(--body-copy-sm);
    line-height: 1.45;
}

.ai-native-metrics .col-12:last-child .ai-native-impact-inline {
    border-bottom-color: transparent;
}

@media (min-width: 1200px) {
    .ai-native-metrics .col-xl-3 .ai-native-impact-inline {
        border-bottom-color: transparent;
    }
}

@media (max-width: 991.98px) {
    .ai-native-hero__content,
    .ai-native-panel {
        border-radius: 16px;
    }

    .ai-native-title {
        font-size: var(--fs-lg);
    }

    .ai-native-gated-shell__right {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 0.5rem;
    }

    .ai-native-calculator__cta--compact .ai-native-calculator__cta-trust {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 575.98px) {
    .ai-native-cta-actions__item {
        flex-basis: 100%;
    }

    .ai-native-cta-actions__item--wide {
        min-width: 0;
        width: 100%;
    }

    .ai-native-proof {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
    }

    .ai-native-proof__item {
        border-right: 0;
        border-bottom: 1px solid rgba(var(--ai-primary-2-rgb), 0.12);
        padding: 0.55rem 0.4rem;
    }

    .ai-native-proof__item:nth-last-child(-n+2) {
        border-bottom: 0;
    }

    .ai-native-impact-inline,
    .ai-native-lane {
        padding: 0.75rem;
    }

    .ai-native-impact-inline {
        gap: 0.8rem;
    }

    .ai-native-impact-inline__icon {
        width: 58px;
        height: 58px;
        min-width: 58px;
        font-size: 1.65rem;
    }

    .ai-native-visual {
        width: 100%;
        height: auto;
        max-height: none;
    }

    .ai-native-calculator {
        border-radius: 16px;
    }

    .ai-native-calculator__intro,
    .ai-native-calculator__result-intro {
        min-height: 0;
    }

    .ai-native-gated-modal .modal-header,
    .ai-native-gated-modal .modal-body {
        padding-left: 0.85rem;
        padding-right: 0.85rem;
    }

    .ai-native-gated-modal__content {
        border-radius: 16px;
    }

    .ai-native-gated-shell__right { padding-top: 0.4rem; }
}

/* Source: home-quick-brief.css */
.cta-modal-light-shell {
    border-radius: 18px;
    overflow: hidden;
    background:
        radial-gradient(circle at 2% 0%, rgba(255, 225, 88, 0.16), transparent 36%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.cta-modal-light-left {
    background: var(--bg-gradient-dark-quick-brief);
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-modal-light-left__inner {
    padding: 2.15rem 1.85rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.86);
}

.cta-modal-light-left__inner h4 {
    color: #ffffff !important;
}

.cta-modal-light-left__hero p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.55;
}

.cta-modal-light-left__points {
    display: grid;
    gap: 0.65rem;
    margin-top: 0.2rem;
}

.cta-modal-light-left__points li {
    list-style: none;
    position: relative;
    padding: 0.6rem 0.8rem 0.6rem 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.88rem;
    line-height: 1.45;
}

.cta-modal-light-left__points li::before {
    content: "";
    position: absolute;
    left: 0.8rem;
    top: 0.95rem;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 999px;
    background: rgba(255, 225, 88, 0.95);
    box-shadow: 0 0 0 3px rgba(255, 225, 88, 0.2);
}

.cta-modal-light-left__meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
}

.cta-modal-light-left__meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.65rem 0.75rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
}

.cta-modal-light-left__meta-item span {
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.66);
}

.cta-modal-light-left__meta-item strong {
    font-size: 0.82rem;
    line-height: 1.35;
    color: #ffffff;
    font-weight: 500;
}

.cta-modal-light-left__stats {
    margin-top: 0.4rem;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
}

.cta-modal-light-left__stat {
    padding: 0.55rem 0.45rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
}

.cta-modal-light-left__stat strong {
    display: inline-block;
    line-height: 1.1;
}

.cta-modal-light-left__stat span {
    display: block;
    margin-top: 0.5rem;
    line-height: 1.3;
}

.cta-modal-light-left__stat .ui-metric-accent {
    --metric-accent-rgb: var(--primary-1-rgb);
    font-size: clamp(1.35rem, 1.15rem + 0.7vw, 1.8rem);
}

.cta-modal-light-right {
    background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
}

.cta-modal-light__close-wrap {
    margin-bottom: 0.25rem;
}

.cta-modal-light-right .select2-container {
    width: 100% !important;
}

.cta-modal-light-right .select2-container--default .select2-selection--single {
    height: 46px;
    border: none;
    border-bottom: 1px solid #b8bec6;
    border-radius: 0;
    background: transparent;
    transition: border-color 0.2s ease;
}

.cta-modal-light-right .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #1f2831;
    line-height: 42px;
    padding-left: 0;
    padding-right: 1.7rem;
}

.cta-modal-light-right .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #616b76;
}

.cta-modal-light-right .select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 0.15rem;
    top: 8px;
}

.cta-modal-light-right .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #2f353c transparent transparent transparent;
    border-width: 6px 5px 0 5px;
}

.cta-modal-light-right .floating-input input:focus ~ label,
.cta-modal-light-right .floating-input input:not(:placeholder-shown) ~ label,
.cta-modal-light-right .floating-input textarea:focus ~ label,
.cta-modal-light-right .floating-input textarea:not(:placeholder-shown) ~ label {
    color: #2f353c;
}

.cta-modal-light-right .select2-container--default.select2-container--open .select2-selection--single,
.cta-modal-light-right .select2-container--default.select2-container--focus .select2-selection--single {
    border: none;
    border-bottom: 1px solid #1f2429;
}

.custom-modal .select2-dropdown {
    margin-top: 0.45rem;
    border: 1px solid #d2d8de;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(16, 23, 24, 0.14);
}

.custom-modal .select2-container--default .select2-results > .select2-results__options {
    max-height: 260px;
    padding: 0.35rem 0.2rem;
}

.custom-modal .select2-container--default .select2-results__option {
    margin: 0.1rem 0.25rem;
    padding: 0.5rem 0.7rem;
    border-radius: 8px;
    color: #252c34;
}

.custom-modal .select2-container--default .select2-results__option--selected {
    background-color: #edf1f5;
    color: #1f2429;
}

.custom-modal .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #2d333a;
    color: #ffffff;
}

.custom-modal .select2-container--default .select2-search--dropdown {
    padding: 0.45rem;
}

.custom-modal .select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #c9d0d7;
    border-radius: 10px;
    padding: 0.45rem 0.65rem;
    color: #232a31;
}

.cta-modal-light-right #cta-modal-country-code[readonly] {
    background: rgba(248, 249, 250, 0.6);
}

.cta-modal-light__submit {
    min-width: 220px;
}

.quick-brief-section {
    padding-top: 1rem;
    padding-bottom: 0.5rem;
}

.quick-brief-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(16, 23, 24, 0.12);
    border-radius: 30px;
    background: var(--bg-gradient-dark-quick-brief);
    box-shadow: 0 26px 70px rgba(16, 23, 24, 0.2);
}

.quick-brief-shell::before {
    content: "";
    position: absolute;
    inset: auto -12% -44% auto;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 225, 88, 0.12);
    filter: blur(20px);
}

.quick-brief-lead,
.quick-brief-form-wrap {
    position: relative;
    z-index: 1;
}

.quick-brief-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.85rem;
    border-radius: var(--ui-radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: var(--ui-bg-glass-dark-08);
    color: var(--ui-text-on-dark-86);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
}

.quick-brief-eyebrow::before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--ui-color-yellow);
    box-shadow: var(--ui-shadow-yellow-glow);
}

.quick-brief-lead h3 {
    margin-top: 1rem;
    color: var(--ui-color-white);
}

.quick-brief-lead p {
    color: var(--ui-text-on-dark-78);
}

.quick-brief-points {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.quick-brief-points li {
    list-style: none;
    padding: 0.65rem 0.85rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.07);
    font-size: 0.92rem;
}

.quick-brief-form-wrap {
    padding: 1.25rem;
    border: var(--ui-border-glass-dark-14);
    border-radius: var(--ui-radius-card-lg);
    background: var(--ui-bg-glass-dark-08);
    backdrop-filter: blur(12px);
}

.quick-brief-form-label {
    display: inline-block;
    margin-bottom: 0.45rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.84rem;
    font-weight: 500;
}

.quick-brief-field {
    width: 100%;
    height: 46px;
    padding: 0.6rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--ui-color-ink-900);
    font-size: 0.95rem;
}

.quick-brief-field:focus {
    outline: none;
    border-color: var(--ui-color-yellow);
    box-shadow: 0 0 0 3px rgba(255, 225, 88, 0.22);
}

textarea.quick-brief-field {
    min-height: 110px;
    height: auto;
    resize: vertical;
}

.quick-brief-submit {
    min-height: 46px;
    padding: 0.65rem 1.25rem;
    border: none;
    border-radius: var(--ui-radius-pill);
    background: var(--ui-color-yellow);
    color: var(--ui-color-ink-900);
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quick-brief-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(255, 225, 88, 0.3);
}

.quick-brief-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
}

@media (max-width: 991.98px) {
    .cta-modal-light-right {
        border-radius: 18px;
    }

    .quick-brief-form-wrap {
        padding: 1rem;
    }
}

/* Source: home-pathfinder.css */
.home-pathfinder-section {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background:
        linear-gradient(180deg, rgba(248, 250, 251, 0.92) 0%, rgba(255, 255, 255, 1) 100%);
    border-top: 1px solid rgba(16, 23, 24, 0.12);
    border-bottom: 1px solid rgba(16, 23, 24, 0.12);
}

.home-pathfinder {
    background:
        linear-gradient(90deg, rgba(255, 225, 88, 0.1), transparent 30%),
        linear-gradient(270deg, rgba(0, 159, 253, 0.08), transparent 34%);
}

.home-pathfinder__eyebrow {
    padding: 0.45rem 0.85rem;
    border-radius: var(--ui-radius-pill);
    background: rgba(16, 23, 24, 0.06);
    border: 1px solid rgba(16, 23, 24, 0.1);
    color: var(--ui-color-ink-900);
    font-size: 0.75rem;
}

.home-pathfinder__eyebrow::before {
    width: 0.55rem;
    height: 0.55rem;
    box-shadow: var(--ui-shadow-yellow-glow);
}

.home-pathfinder__copy {
    max-width: 46rem;
    color: #4f5b61;
}

.home-pathfinder__rails {
    display: grid;
    gap: 1.1rem;
}

.home-pathfinder__rail {
    padding-top: 0.9rem;
    border-top: 1px dashed rgba(16, 23, 24, 0.2);
}

.home-pathfinder__label {
    color: #243033;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 600;
}

.home-pathfinder__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.home-pathfinder__chip {
    border: 1px solid rgba(16, 23, 24, 0.2);
    border-radius: var(--ui-radius-pill);
    padding: 0.58rem 0.92rem;
    background: rgba(255, 255, 255, 0.8);
    color: #1f2a2d;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.home-pathfinder__chip:hover {
    border-color: rgba(16, 23, 24, 0.4);
    transform: translateY(-1px);
}

.home-pathfinder__chip.is-active {
    border-color: var(--ui-color-ink-900);
    background: var(--ui-color-yellow);
    color: var(--ui-color-ink-900);
    box-shadow: 0 10px 22px rgba(255, 225, 88, 0.28);
}

.home-pathfinder__result {
    position: sticky;
    top: 110px;
    padding-left: 1.25rem;
    border-left: 1px solid rgba(16, 23, 24, 0.15);
}

.home-pathfinder__result h5 {
    color: #101718;
    line-height: 1.45;
}

.home-pathfinder__result p {
    color: #4f5b61;
}

.home-pathfinder__actions {
    margin-top: 1.2rem;
}

.home-pathfinder__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.62rem 1.1rem;
    border-radius: var(--ui-radius-pill);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.home-pathfinder__cta--primary {
    border: 1px solid var(--ui-color-ink-900);
    background: var(--ui-color-ink-900);
    color: var(--ui-color-white);
}

.home-pathfinder__cta--primary:hover {
    background: #000;
    color: var(--ui-color-white);
}

.home-pathfinder__cta--ghost {
    border: 1px solid rgba(16, 23, 24, 0.22);
    background: transparent;
    color: var(--ui-color-ink-900);
}

.home-pathfinder__cta--ghost:hover {
    border-color: rgba(16, 23, 24, 0.6);
    color: var(--ui-color-ink-900);
}

.home-pathfinder__meta {
    font-size: 0.82rem;
}

@media (max-width: 1199.98px) {
    .home-pathfinder__result {
        position: static;
        top: auto;
        padding-left: 0;
        border-left: none;
        border-top: 1px dashed rgba(16, 23, 24, 0.2);
        padding-top: 1.1rem;
    }
}

/* Source: home-get-started.css */
.home-get-started-section {
    padding: 0.75rem 0 1.5rem;
}

.home-get-started-shell {
    position: relative;
    overflow: hidden;
    border: var(--ui-border-soft);
    border-radius: var(--ui-radius-shell);
    background: var(--bg-gradient-light-soft);
    box-shadow: var(--ui-shadow-soft-55);
}

.home-get-started-shell::after {
    content: "";
    position: absolute;
    inset: auto -8% -18% auto;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(16, 23, 24, 0.05);
    filter: blur(10px);
}

.home-get-started-shell__header,
.home-get-started-card {
    position: relative;
    z-index: 1;
}

.home-get-started-shell__cta {
    height: 100%;
    padding: 1.25rem;
    border: var(--ui-border-soft);
    border-radius: 22px;
    background: var(--ui-surface-white-92);
}

.home-get-started-shell__cta .shine-btn {
    width: 100%;
    justify-content: center;
}

.home-get-started-card {
    padding: 1.5rem;
    border: var(--ui-border-soft);
    border-radius: var(--ui-radius-card-lg);
    background: var(--ui-surface-white-88);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-get-started-card:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 23, 24, 0.14);
    box-shadow: 0 18px 36px rgba(16, 23, 24, 0.08);
}

.home-get-started-card__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 3rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0.85rem;
    border-radius: var(--ui-radius-pill);
    background: var(--ui-color-ink-900);
    color: var(--ui-color-white);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.home-get-started-card h5 {
    color: #101718;
}

.home-get-started-card p {
    color: #58666d;
    line-height: 1.7;
}

@media (max-width: 991.98px) {
    .home-get-started-section {
        padding-top: 0.5rem;
    }

    .home-get-started-shell__cta {
        padding: 1rem;
    }

    .home-get-started-card {
        padding: 1.25rem;
    }
}

/* Source: home-faqs.css */
.home-faqs-section {
    padding: 0.5rem 0 1.5rem;
}

.home-faqs-shell {
    position: relative;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.home-faqs-shell::before {
    content: none;
}

.home-faqs-intro,
.home-faqs-tabs,
.home-faqs-panel {
    position: relative;
    z-index: 1;
}

.home-faqs-intro__eyebrow {
    background: rgba(16, 23, 24, 0.06);
    color: var(--ui-color-ink-900);
}

.home-faqs-intro__eyebrow::before {
    box-shadow: none;
}

.home-faqs-intro p {
    color: #58666d;
    max-width: 28rem;
}

.home-faqs-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.25rem;
}

.home-faqs-tabs__button {
    padding: 0.62rem 0.88rem;
    border: 1px solid rgba(16, 23, 24, 0.09);
    border-radius: var(--ui-radius-pill);
    background: rgba(255, 255, 255, 0.95);
    color: #46555c;
    font-size: var(--body-copy-sm);
    font-weight: 500;
    transition: all 0.25s ease;
    line-height: 1.2;
}

.home-faqs-tabs__button.is-active,
.home-faqs-tabs__button:hover {
    background: var(--ui-color-ink-900);
    border-color: var(--ui-color-ink-900);
    color: var(--ui-color-white);
}

.home-faqs-panel__header {
    margin-bottom: 0.8rem;
    padding-bottom: 0.75rem;
}

.home-faqs-list {
    display: grid;
    gap: 0;
    border-top: var(--ui-border-soft);
}

.home-faqs-item {
    border-bottom: var(--ui-border-soft);
    border-radius: 0;
    background: transparent;
    transition: border-color 0.2s ease;
}

.home-faqs-item:hover {
    border-color: rgba(16, 23, 24, 0.18);
}

.home-faqs-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 0.9rem 0;
    border: 0;
    background: transparent;
    color: #101718;
    text-align: left;
    font-size: var(--body-copy);
    font-weight: 500;
    line-height: 1.35;
}

.home-faqs-item__icon {
    position: relative;
    flex: 0 0 auto;
    width: 1.2rem;
    height: 1.2rem;
}

.home-faqs-item__icon::before,
.home-faqs-item__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.45rem;
    height: 0.45rem;
    border-right: 1.8px solid #101718;
    border-bottom: 1.8px solid #101718;
    transition: transform 0.25s ease;
}

.home-faqs-item__icon::before {
    transform: translate(-50%, -62%) rotate(45deg);
}

.home-faqs-item__icon::after {
    content: none;
}

.home-faqs-item.is-open .home-faqs-item__icon::before {
    transform: translate(-50%, -38%) rotate(-135deg);
}

.home-faqs-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
}

.home-faqs-item__answer-inner {
    padding: 0 0 0.95rem;
}

@media (max-width: 991.98px) {
    .home-faqs-section {
        padding-top: 0.25rem;
    }

    .home-faqs-tabs {
        margin-top: 1rem;
    }

    .home-faqs-item__question {
        padding: 0.82rem 0;
    }

    .home-faqs-item__answer-inner {
        padding: 0 0 0.85rem;
    }
}

/* Source: home-page-specific */
/* Home page layout rhythm */
.home-page-sections {
    --home-standard-section-space-y: var(--site-standard-section-space-y);
    --home-standard-section-space-x: 0.75rem;
}

.home-page-sections > section:not(.hero-section) {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: var(--home-standard-section-space-y);
    padding-bottom: var(--home-standard-section-space-y);
}

.home-page-sections > section.container-fluid:not(.hero-section) {
    --bs-gutter-x: 0;
    padding-left: var(--home-standard-section-space-x);
    padding-right: var(--home-standard-section-space-x);
}

/* Hero network visual (moved from inline component style) */
.home-hero-section {
    --hero-primary-1: var(--primary-1, #ffe158);
    --hero-primary-1-rgb: var(--primary-1-rgb, 255, 225, 88);
    --hero-primary-2: var(--primary-2, #000000);
    --hero-primary-2-rgb: var(--primary-2-rgb, 0, 0, 0);

    position: relative;
    min-height: 100vh;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at top left, rgba(var(--hero-primary-1-rgb), 0.22), transparent 30%),
        radial-gradient(circle at 85% 22%, rgba(0, 159, 253, 0.12), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.home-hero-section__main {
    min-height: 0;
    padding-top: clamp(5.5rem, 8vw, 7rem);
}

.home-hero-section__clients {
    position: relative;
    z-index: 2;
    margin-top: auto;
}

.home-hero-section__content {
    position: relative;
    z-index: 2;
}

.home-hero-network {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.home-hero-network__svg {
    width: 100%;
    height: 100%;
    opacity: 0.95;
    transform: scale(1.02);
}

.home-hero-network__lines use {
    fill: none;
    stroke: rgba(var(--hero-primary-2-rgb), 0.1);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-dasharray: 10 14;
    animation: home-hero-network-flow 16s linear infinite;
}

.home-hero-network__lines use:nth-child(2) {
    animation-duration: 20s;
}

.home-hero-network__lines use:nth-child(3) {
    animation-duration: 18s;
    animation-direction: reverse;
}

.home-hero-network__lines use:nth-child(4) {
    animation-duration: 24s;
}

.home-hero-network__rings circle {
    fill: rgba(var(--hero-primary-1-rgb), 0.08);
    stroke: rgba(var(--hero-primary-2-rgb), 0.16);
    stroke-width: 1;
    transform-origin: center;
    animation: home-hero-ring-travel 11s linear infinite;
}

.home-hero-network__rings circle:nth-child(2) {
    animation-duration: 13s;
    animation-delay: -3.2s;
}

.home-hero-network__rings circle:nth-child(3) {
    animation-duration: 12s;
    animation-delay: -6.4s;
}

.home-hero-network__rings circle:nth-child(4) {
    animation-duration: 14s;
    animation-delay: -2.4s;
}

.home-hero-network__highlights circle {
    fill: var(--hero-primary-1);
    filter: drop-shadow(0 0 10px rgba(var(--hero-primary-1-rgb), 0.45));
    transform-origin: center;
}

.home-hero-network__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.45;
    animation: home-hero-glow-float 12s ease-in-out infinite;
}

.home-hero-network__glow--left {
    width: 280px;
    height: 280px;
    top: 10%;
    left: -4%;
    background: rgba(var(--hero-primary-1-rgb), 0.22);
}

.home-hero-network__glow--right {
    width: 340px;
    height: 340px;
    right: -6%;
    bottom: 16%;
    background: rgba(0, 159, 253, 0.16);
    animation-delay: -4s;
}

@keyframes home-hero-network-flow {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -240;
    }
}

@keyframes home-hero-ring-travel {
    0%,
    8% {
        opacity: 0;
        transform: scale(0.85);
    }

    16%,
    82% {
        opacity: 0.55;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.08);
    }
}

@keyframes home-hero-glow-float {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(20px, -24px, 0);
    }
}

/* Home tabs */
.home-page-sections :is(#canvas-tab-alt-justify, #teamsUl) {
    position: relative;
}

.home-page-sections :is(#canvas-tab-alt-justify, #teamsUl) .nav-link {
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.84rem;
    font-weight: 600;
}

.home-page-sections :is(#canvas-tab-alt-justify, #teamsUl)::before,
.home-page-sections :is(#canvas-tab-alt-justify, #teamsUl)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--tab-divider);
}

.home-page-sections :is(#canvas-tab-alt-justify, #teamsUl)::before {
    top: 0;
}

.home-page-sections :is(#canvas-tab-alt-justify, #teamsUl)::after {
    bottom: 0;
}

.home-page-sections #canvas-tab-alt-justify {
    --tab-divider: linear-gradient(90deg, transparent, rgba(17, 24, 39, 0.22), transparent);
}

.home-page-sections #canvas-tab-alt-justify li.nav-item:hover,
.home-page-sections #canvas-tab-alt-justify .nav-link.active {
    background: var(--bg-gradient-dark-tab-active) !important;
}

.home-page-sections #canvas-tab-alt-justify .nav-link.active,
.home-page-sections #canvas-tab-alt-justify li.nav-item:hover .nav-link {
    color: #f8fafc !important;
}

.home-page-sections #teamsUl {
    --tab-divider: linear-gradient(90deg, transparent, rgba(255, 225, 88, 0.55), transparent);
}

.home-page-sections #teamsUl li.nav-item {
    position: relative;
}

.home-page-sections #teamsUl li.nav-item + li.nav-item {
    margin-left: 0 !important;
    padding-left: 0.55rem;
}

.home-page-sections #teamsUl li.nav-item + li.nav-item::before {
    content: "";
    position: absolute;
    left: 0.15rem;
    top: 50%;
    width: 1px;
    height: 18px;
    background: rgba(255, 225, 88, 0.28);
    transform: translateY(-50%);
}

.home-page-sections #teamsUl li.nav-item:hover,
.home-page-sections #teamsUl .nav-link.active {
    background: #ffe158 !important;
}

.home-page-sections #teamsUl .nav-link.active,
.home-page-sections #teamsUl li.nav-item:hover .nav-link {
    color: #0f172a !important;
}

.home-page-sections .teams-tag {
    font-weight: 500;
    letter-spacing: 0.01em;
    padding: 0.32rem 0.62rem !important;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

/* Home testimonials */
.home-testimonials-showcase__shell {
    background: var(--bg-gradient-dark-intense);
    border: 1px solid rgba(255, 218, 0, 0.35);
    border-radius: 20px;
}

.home-testimonials-showcase h2 {
    font-size: clamp(2rem, 1.3rem + 2.4vw, 3.25rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #f8fafc;
}

.home-testimonials-showcase__all-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    font-size: var(--body-copy-sm);
    border-bottom: 1px solid rgba(255, 255, 255, 0.58);
    padding-bottom: 0.25rem;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.home-testimonials-showcase__all-link:hover {
    color: rgba(255, 255, 255, 0.86);
    border-color: rgba(255, 255, 255, 0.92);
}

.home-testimonials-showcase__rating {
    gap: 1rem;
    color: rgba(241, 245, 249, 0.7);
    font-size: var(--body-copy-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.home-testimonials-showcase__rating-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.home-testimonials-showcase__rating-logo:hover {
    opacity: 0.9;
}

.home-testimonials-showcase__rating-logo img {
    width: 78px;
    height: auto;
    display: block;
    filter: brightness(0) saturate(100%) invert(100%);
}

.home-testimonials-showcase__rating-copy span:last-child {
    color: #ffffff;
    font-size: 1.12rem;
    letter-spacing: 0.02em;
}

.home-testimonials-showcase__video-wrap {
    background: var(--bg-dark-solid-soft);
    border: 1px solid rgba(255, 218, 0, 0.28);
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    position: relative;
}

.home-testimonials-showcase__video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.home-testimonials-showcase__video-fallback {
    min-height: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #111827;
}

.home-testimonials-showcase__quote {
    color: #ffe158;
    font-size: 3rem;
    line-height: 1;
    font-weight: 700;
}

.home-testimonials-showcase__slide {
    background: linear-gradient(160deg, #141b2d 0%, #101828 100%);
    border: 1px solid rgba(255, 218, 0, 0.26);
    border-radius: 18px;
    padding: 1.15rem 1.2rem;
    min-height: 260px;
    display: flex;
    flex-direction: column;
}

.home-testimonials-showcase__text {
    color: #ffffff;
    font-size: var(--body-copy-lg);
    line-height: 1.55;
}

.home-testimonials-showcase__meta {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 218, 0, 0.22);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.1rem;
}

.home-testimonials-showcase__meta h5 {
    color: #ffffff;
    font-size: var(--fs-sm);
}

.home-testimonials-showcase__meta p {
    color: rgba(255, 255, 255, 0.88);
    font-size: var(--body-copy-sm);
}

.home-testimonials-showcase__meta img {
    max-width: 160px;
    max-height: 54px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(100%);
}

@media (max-width: 1023px) {
    .home-testimonials-showcase__rating {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-testimonials-showcase__shell {
        border-radius: 16px;
    }

    .home-testimonials-showcase__slide {
        padding: 1.05rem;
        min-height: 250px;
    }

    .home-testimonials-showcase__video-wrap,
    .home-testimonials-showcase__video-fallback {
        aspect-ratio: 16 / 9;
    }

    .home-testimonials-showcase__text {
        font-size: var(--body-copy);
    }

    .home-testimonials-showcase__rating > div:last-child {
        align-items: flex-start !important;
    }

    .home-testimonials-showcase__meta img {
        max-width: 100px;
        max-height: 34px;
    }

    .home-page-sections #canvas-tab-alt-justify li.nav-item {
        min-width: auto !important;
        max-width: 150px !important;
    }

    .home-page-sections #teamsUl li.nav-item {
        min-width: auto !important;
        max-width: 200px !important;
    }
}

@media (max-width: 767.98px) {
    .home-page-sections {
        --home-standard-section-space-y: var(--site-standard-section-space-y-mobile);
        --home-standard-section-space-x: 0.75rem;
    }

    .ai-native-eyebrow::before {
        display: none;
    }

    .home-hero-section {
        min-height: 100svh;
        background:
            radial-gradient(circle at top left, rgba(255, 225, 88, 0.16), transparent 34%),
            linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
    }

    .home-hero-section__main {
        padding-top: 5.25rem;
    }

    .home-hero-network__lines use {
        stroke-width: 1.2;
        stroke-dasharray: 8 12;
    }

    .home-hero-network__glow--left {
        width: 180px;
        height: 180px;
        top: 6%;
    }
}

@media (max-width: 1023px) {
    .home-hero-network__svg {
        opacity: 0.55;
        transform: scale(1.12);
    }

    .home-hero-network__glow--right {
        width: 220px;
        height: 220px;
        bottom: 10%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-hero-network__lines use,
    .home-hero-network__rings circle,
    .home-hero-network__glow {
        animation: none;
    }
}
