:root {
    --site-font-family: "Century Gothic", CenturyGothic, AppleGothic, "URW Gothic L", "Trebuchet MS", sans-serif;
    --site-bg: #f7fafc;
    --site-bg-soft: #edf3f8;
    --site-surface: #ffffff;
    --site-surface-soft: #f8fbfd;
    --site-surface-muted: #e8eef5;
    --site-border: rgba(15, 23, 42, 0.08);
    --site-border-strong: rgba(15, 23, 42, 0.08);
    --site-text: #09111f;
    --site-text-soft: #526075;
    --site-text-inverse: #f7f9fc;
    --site-red: #eb233c;
    --site-red-soft: #ff6b7d;
    --site-gold: #ff9f43;
    --site-shadow: 0 22px 60px rgba(5, 12, 24, 0.1);
    --site-shadow-lg: 0 30px 88px rgba(5, 12, 24, 0.16);
    --site-radius: 28px;
    --site-radius-sm: 20px;
    --site-container: min(1360px, calc(100% - 40px));
    --site-container-wide: min(1520px, calc(100% - 56px));
    --site-header-offset: 124px;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    scroll-behavior: smooth;
}

body {
    padding-top: var(--site-header-offset);
    background: var(--site-surface-soft);
    color: var(--site-text);
    font-family: var(--site-font-family);
    letter-spacing: normal;
    user-select: auto;
    -webkit-user-select: auto;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

body.site-menu-open {
    overflow: hidden;
}

.site-skip-link {
    position: absolute;
    top: 0;
    left: 1rem;
    z-index: 200;
    padding: 0.85rem 1.1rem;
    border-radius: 0 0 16px 16px;
    background: #09111f;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transform: translateY(-120%);
    transition: transform 160ms ease;
}

.site-skip-link:focus {
    transform: translateY(0);
}

img {
    display: block;
    max-width: 100%;
}

.site-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1em;
    height: 1em;
    line-height: 1;
    flex-shrink: 0;
    vertical-align: -0.125em;
}

.site-icon svg {
    display: block;
    width: 1em;
    height: 1em;
}

section[id],
footer[id] {
    scroll-margin-top: calc(var(--site-header-offset) + 24px);
}

.site-page-shell {
    min-height: 100vh;
}

.site-main {
    position: relative;
    z-index: 1;
}

.site-container {
    width: var(--site-container);
    margin: 0 auto;
}

.intello-hero .site-container {
    width: var(--site-container-wide);
}

.intello-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    gap: 0.7rem;
    min-height: 54px;
    padding: 0.95rem 1.35rem;
    border: 0;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.15;
    text-align: center;
    cursor: pointer;
    appearance: none;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
}

.intello-button::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 10%, rgba(255, 255, 255, 0.26) 48%, transparent 90%);
    transform: translateX(-140%);
    transition: transform 420ms ease;
}

.intello-button:hover,
.intello-button:focus-visible {
    transform: translateY(-2px);
}

.intello-button:hover::after,
.intello-button:focus-visible::after {
    transform: translateX(140%);
}

.intello-button--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--site-red-soft), var(--site-red));
    box-shadow: 0 16px 32px rgba(235, 35, 60, 0.22);
}

.intello-button--secondary {
    color: var(--site-text);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.intello-button--ghost {
    color: var(--site-text);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(20px);
}

.intello-home .intello-button--secondary {
    background: rgba(255, 255, 255, 0.92);
}

.intello-button--disabled {
    color: var(--site-text-soft);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.1);
    cursor: not-allowed;
}

.intello-button--wide {
    width: 100%;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 60;
    color: var(--site-text);
    background: rgba(255, 255, 255, 0.84);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(20px);
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
    transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.1);
}

.site-header__utility {
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.site-header__utility-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: var(--site-container-wide);
    min-height: 36px;
    margin: 0 auto;
}

.site-header__eyebrow {
    color: var(--site-text-soft);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.site-header__utility-pills {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.site-header__utility-pills span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.32rem 0.68rem;
    border-radius: 999px;
    color: var(--site-text-soft);
    background: rgba(15, 23, 42, 0.04);
    font-size: 0.68rem;
    font-weight: 600;
}

.site-header__main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    width: var(--site-container-wide);
    min-height: 86px;
    margin: 0 auto;
}

.site-header__brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.site-header__logo {
    width: auto;
    height: 48px;
}

.site-header__panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex: 1 1 auto;
    min-width: 0;
}

.site-header__menu-toggle {
    display: none;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    gap: 0.33rem;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: rgba(255, 255, 255, 0.92);
    cursor: pointer;
}

.site-header__menu-toggle:focus-visible,
.site-nav__toggle:focus-visible,
.site-footer__social a:focus-visible {
    outline: 3px solid rgba(235, 35, 60, 0.32);
    outline-offset: 3px;
}

.site-header__menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--site-text);
    border-radius: 999px;
    transition: transform 180ms ease, opacity 180ms ease;
}

.site-header__menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.site-header__menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.site-header__menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    flex: 1 1 auto;
    flex-wrap: nowrap;
    min-width: 0;
}

.site-nav__item {
    position: relative;
}

.site-nav__trigger {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.site-nav__link,
.site-nav__toggle,
.site-nav__dropdown-link {
    text-decoration: none;
}

.site-nav__link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 0.74rem;
    border-radius: 999px;
    color: rgba(9, 17, 31, 0.82);
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    transition: color 180ms ease, background 180ms ease;
}

.site-nav__item:hover > .site-nav__trigger > .site-nav__link,
.site-nav__item:focus-within > .site-nav__trigger > .site-nav__link {
    color: var(--site-text);
    background: rgba(15, 23, 42, 0.05);
}

.site-nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-left: -0.35rem;
    border-radius: 999px;
    color: rgba(9, 17, 31, 0.64);
    cursor: pointer;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav__toggle:hover {
    color: var(--site-text);
    background: rgba(15, 23, 42, 0.05);
}

.site-nav__item.is-open .site-nav__toggle,
.site-nav__item:hover .site-nav__toggle {
    transform: rotate(180deg);
}

.site-nav__dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    display: grid;
    gap: 0.45rem;
    min-width: 220px;
    padding: 0.8rem;
    border-radius: 22px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav__item--has-children:hover > .site-nav__dropdown,
.site-nav__item--has-children:focus-within > .site-nav__dropdown,
.site-nav__item--has-children.is-open > .site-nav__dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.site-nav__dropdown-link {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 0.9rem;
    border-radius: 16px;
    color: rgba(9, 17, 31, 0.82);
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 180ms ease, color 180ms ease;
}

.site-nav__dropdown-link:hover,
.site-nav__dropdown-link:focus-visible {
    color: var(--site-text);
    background: rgba(235, 35, 60, 0.06);
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 0;
}

.site-header__account {
    color: var(--site-text);
}

.site-header__actions .intello-button {
    min-height: 46px;
    padding: 0.8rem 1.15rem;
    font-size: 0.92rem;
}

.site-header__account i,
.site-header__demo i {
    font-size: 1rem;
}

.intello-home {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 0 12%, rgba(255, 102, 122, 0.14), transparent 24%),
        radial-gradient(circle at 100% 18%, rgba(255, 159, 67, 0.1), transparent 20%),
        linear-gradient(180deg, #fbfdff 0, #edf3f8 100%);
}

.intello-home__section {
    position: relative;
    padding: 104px 0;
    content-visibility: auto;
    contain-intrinsic-size: 960px;
}

.intello-home__section--light {
    background:
        radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.86), transparent 38%),
        linear-gradient(180deg, #fbfdff 0, #eef3f8 100%);
}

.intello-home__section--lift {
    padding-top: 88px;
}

.intello-home__section--lift::before {
    content: "";
    position: absolute;
    inset: -138px 0 auto;
    height: 168px;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(247, 250, 252, 0.55) 40%, rgba(251, 253, 255, 0.98) 100%);
}

.intello-home__section--dark {
    color: var(--site-text);
    background:
        radial-gradient(circle at 15% 10%, rgba(255, 64, 92, 0.08), transparent 20%),
        linear-gradient(180deg, #f7fafc, #edf3f8 100%);
}

.intello-home__section--soft {
    background:
        radial-gradient(circle at top center, rgba(255, 255, 255, 0.7), transparent 34%),
        linear-gradient(180deg, #f4f8fb, #eaf1f6);
}

.intello-home__section--cta {
    padding-top: 24px;
    padding-bottom: 112px;
    background: linear-gradient(180deg, #eef4f8, #f8fbfd);
}

.intello-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.52rem 0.9rem;
    border-radius: 999px;
    color: var(--site-text);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(15, 23, 42, 0.08);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.intello-section-heading {
    max-width: 880px;
    margin: 0 auto 48px;
    text-align: center;
}

.intello-section-heading .intello-eyebrow {
    color: var(--site-red);
    background: rgba(235, 35, 60, 0.08);
    border-color: rgba(235, 35, 60, 0.16);
}

.intello-section-heading h2 {
    margin: 1rem 0 0.9rem;
    font-size: clamp(2rem, 4.5vw, 3.35rem);
    line-height: 1.02;
    font-weight: 700;
}

.intello-section-heading p {
    max-width: 62ch;
    margin: 0 auto;
    color: var(--site-text-soft);
    font-size: 1.02rem;
    line-height: 1.8;
}

.intello-section-heading--light h2,
.intello-section-heading--light p {
    color: var(--site-text);
}

.intello-section-heading--light p {
    color: var(--site-text-soft);
}

.intello-section-heading--light .intello-eyebrow {
    color: var(--site-red);
    background: rgba(235, 35, 60, 0.08);
    border-color: rgba(235, 35, 60, 0.16);
}

.intello-hero {
    position: relative;
    overflow: hidden;
    padding: 44px 0 124px;
    min-height: min(calc(100vh - var(--site-header-offset)), 860px);
    color: var(--site-text);
}

.intello-hero::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 140px;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(244, 248, 251, 0.72) 62%, rgba(248, 251, 253, 0.96) 100%);
}

.intello-hero__backdrop {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.intello-hero__orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(10px);
    opacity: 0.7;
}

.intello-hero__orb--one {
    top: 6%;
    left: -3%;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 74, 108, 0.14), transparent 72%);
    animation: floatDrift 18s ease-in-out infinite;
}

.intello-hero__orb--two {
    top: 24%;
    right: 8%;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(255, 159, 67, 0.12), transparent 72%);
    animation: floatDrift 16s ease-in-out infinite reverse;
}

.intello-hero__orb--three {
    bottom: 10%;
    right: -4%;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5), transparent 72%);
    animation: floatDrift 20s ease-in-out infinite;
}

.intello-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.05) 1px, transparent 1px);
    background-size: 120px 120px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.82), transparent 85%);
    opacity: 0.3;
}

.intello-hero__layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(620px, 1.08fr);
    gap: clamp(3rem, 4vw, 5rem);
    align-items: center;
}

.intello-hero__content {
    max-width: 700px;
}

.intello-hero__title {
    margin: 1.2rem 0 1rem;
    font-size: clamp(3rem, 5.2vw, 5.25rem);
    line-height: 0.98;
    font-weight: 700;
}

.intello-hero__copy {
    margin: 0 0 2rem;
    max-width: 56ch;
    color: var(--site-text-soft);
    font-size: 1.08rem;
    line-height: 1.8;
}

.intello-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.intello-hero__signals {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.7rem;
}

.intello-hero__signals span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.6rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: var(--site-text-soft);
    font-size: 0.82rem;
    font-weight: 600;
}

.intello-hero__visual {
    position: relative;
    min-height: 760px;
    isolation: isolate;
}

.intello-floating-card {
    position: absolute;
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    z-index: 1;
    width: min(212px, 30vw);
    padding: 0.9rem 0.9rem 0.9rem 0.95rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.09);
    backdrop-filter: blur(24px);
    opacity: 0.78;
    animation: floatDrift 14s ease-in-out infinite;
}

.intello-floating-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 107, 125, 0.2), rgba(255, 159, 67, 0.18));
    color: #fff;
    font-size: 1.25rem;
}

.intello-floating-card__icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    display: block;
}

.intello-floating-card__label {
    display: inline-flex;
    margin-bottom: 0.32rem;
    color: var(--site-text);
    font-size: 0.88rem;
    font-weight: 700;
}

.intello-floating-card p {
    margin: 0;
    color: var(--site-text-soft);
    font-size: 0.76rem;
    line-height: 1.5;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.intello-floating-card--chat {
    top: 20px;
    left: 0;
}

.intello-floating-card--hub {
    right: 0;
    bottom: 24px;
    animation-delay: -6s;
}

.intello-floating-card--edu {
    left: 0;
    bottom: 24px;
    animation-delay: -10s;
}

.intello-dashboard {
    position: absolute;
    z-index: 2;
    top: 138px;
    left: 50%;
    width: min(560px, calc(100% - 72px));
    transform: translateX(-50%);
}

.intello-dashboard__frame {
    position: relative;
    padding: 1.55rem;
    border-radius: 32px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 248, 251, 0.96)),
        rgba(255, 255, 255, 0.9);
    box-shadow: 0 28px 72px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(24px);
}

.intello-dashboard__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.intello-dashboard__badge,
.intello-dashboard__status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.52rem 0.82rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.05);
    color: var(--site-text);
    font-size: 0.8rem;
    font-weight: 700;
}

.intello-dashboard__status i {
    color: #24d16d;
    font-size: 0.7rem;
}

.intello-dashboard__metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-bottom: 1rem;
}

.intello-dashboard__metric {
    padding: 1rem;
    border-radius: 20px;
    background: rgba(248, 251, 253, 0.98);
}

.intello-dashboard__metric-label {
    display: block;
    color: var(--site-text-soft);
    font-size: 0.76rem;
    font-weight: 500;
}

.intello-dashboard__metric strong {
    display: block;
    margin-top: 0.45rem;
    color: var(--site-text);
    font-size: 1.45rem;
    font-weight: 700;
}

.intello-dashboard__body {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
    gap: 1rem;
}

.intello-dashboard__chart,
.intello-dashboard__stack-card {
    border-radius: 24px;
    background: rgba(248, 251, 253, 0.98);
}

.intello-dashboard__chart {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    padding: 1.25rem;
}

.intello-dashboard__chart-header h2 {
    margin: 0 0 0.35rem;
    color: var(--site-text);
    font-size: 1.1rem;
}

.intello-dashboard__chart-header span {
    color: var(--site-text-soft);
    font-size: 0.84rem;
}

.intello-dashboard__chart-lines {
    position: absolute;
    inset: 88px 1.25rem 1.25rem;
    display: grid;
    align-content: space-between;
}

.intello-dashboard__chart-lines span {
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(15, 23, 42, 0.08);
}

.intello-dashboard__chart-wave {
    position: absolute;
    right: 1.25rem;
    bottom: 1rem;
    left: 1.25rem;
    height: 160px;
}

.intello-dashboard__chart-wave svg {
    width: 100%;
    height: 100%;
}

.intello-dashboard__stack {
    display: grid;
    gap: 1rem;
}

.intello-dashboard__stack-card {
    padding: 1.1rem;
}

.intello-dashboard__stack-label {
    display: block;
    color: var(--site-text-soft);
    font-size: 0.78rem;
    font-weight: 600;
}

.intello-dashboard__stack-card strong {
    display: block;
    margin-top: 0.55rem;
    color: var(--site-text);
    font-size: 1rem;
    line-height: 1.5;
}

.intello-dual-grid,
.intello-platform-grid,
.intello-services-grid,
.intello-proof-grid,
.intello-industry-grid,
.intello-stats-grid {
    display: grid;
    gap: 1.4rem;
}

.intello-dual-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 1.6rem;
}

.intello-feature-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
    padding: 2.2rem;
    border-radius: var(--site-radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 252, 0.94));
    color: var(--site-text);
    border: 1px solid rgba(15, 23, 42, 0.07);
    box-shadow: var(--site-shadow);
    overflow: hidden;
}

.intello-feature-panel--light {
    color: var(--site-text);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 253, 0.96));
    border: 1px solid rgba(15, 23, 42, 0.07);
    box-shadow: var(--site-shadow);
}

.intello-feature-panel::before {
    content: "";
    position: absolute;
    top: -70px;
    right: -36px;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(235, 35, 60, 0.08), transparent 72%);
    pointer-events: none;
}

.intello-feature-panel__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 1.15rem;
}

.intello-feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 38px;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: var(--site-text);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.intello-feature-pill i {
    color: var(--site-red);
    font-size: 0.8rem;
}

.intello-feature-pill--muted {
    color: var(--site-text-soft);
    font-weight: 600;
}

.intello-feature-panel__header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.intello-feature-panel__header-copy {
    flex: 1 1 auto;
    min-width: 0;
}

.intello-feature-panel__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 107, 125, 0.22), rgba(255, 159, 67, 0.18));
    color: var(--site-red);
    font-size: 1.25rem;
}

.intello-feature-panel--light .intello-feature-panel__icon {
    color: var(--site-red);
    background: rgba(235, 35, 60, 0.08);
}

.intello-feature-panel__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.7rem;
}

.intello-feature-panel__brand span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: rgba(235, 35, 60, 0.08);
    color: var(--site-red);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.intello-feature-panel__header h3 {
    margin: 0 0 0.55rem;
    font-size: 1.75rem;
}

.intello-feature-panel__header p {
    margin: 0;
    color: inherit;
    opacity: 0.8;
    line-height: 1.75;
}

.intello-feature-panel > .intello-button {
    margin-top: auto;
}

.intello-feature-panel__button {
    min-height: 64px;
    border-radius: 24px;
    padding-inline: 1.5rem;
}

.intello-feature-panel__button.intello-button--secondary {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 251, 0.96));
    border-color: rgba(15, 23, 42, 0.1);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.intello-mini-grid {
    display: grid;
    gap: 0.95rem;
    margin-bottom: 1.5rem;
}

.intello-mini-card {
    display: flex;
    flex-direction: column;
    padding: 1.15rem 1.2rem;
    border-radius: 22px;
    background: rgba(248, 251, 253, 0.98);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.intello-mini-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.intello-feature-panel--light .intello-mini-card {
    background: rgba(244, 247, 251, 0.98);
    border-color: rgba(15, 23, 42, 0.06);
}

.intello-mini-card__title {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    flex: 1 1 260px;
}

.intello-mini-card__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 107, 125, 0.18), rgba(255, 159, 67, 0.14));
    color: var(--site-red);
    font-size: 1rem;
}

.intello-mini-card__logo img {
    width: 100%;
    height: 100%;
    padding: 0.42rem;
    object-fit: contain;
}

.intello-mini-card__details {
    display: grid;
    gap: 0.32rem;
}

.intello-mini-card__details h4 {
    margin: 0;
    font-size: 1rem;
}

.intello-mini-card__details span {
    color: var(--site-text-soft);
    font-size: 0.85rem;
    line-height: 1.55;
}

.intello-mini-card p {
    margin: 0;
    color: inherit;
    opacity: 0.8;
    font-size: 0.92rem;
    line-height: 1.65;
}

.intello-mini-card__status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    background: rgba(235, 35, 60, 0.08);
    color: var(--site-red);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.intello-service-tags {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.58rem;
    margin-bottom: 1.1rem;
    align-items: start;
}

.intello-service-tags span {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.42rem;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    min-height: 36px;
    padding: 0.54rem 0.72rem;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(247, 249, 252, 0.98), rgba(241, 245, 249, 0.95));
    border: 1px solid rgba(15, 23, 42, 0.06);
    color: var(--site-text);
    font-size: 0.78rem;
    line-height: 1.25;
    font-weight: 600;
    white-space: normal;
    overflow-wrap: anywhere;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.intello-service-tags span[id] {
    scroll-margin-top: calc(var(--site-header-offset) + 24px);
}

.intello-service-tags span i {
    color: var(--site-red);
    font-size: 0.7rem;
    flex-shrink: 0;
}

.intello-service-tags span:hover {
    transform: translateY(-2px);
    border-color: rgba(235, 35, 60, 0.14);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
}

.intello-feature-panel__callout {
    margin-bottom: 1.5rem;
    padding: 1rem 1.05rem;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 251, 253, 0.94));
    border: 1px solid rgba(15, 23, 42, 0.07);
}

.intello-feature-panel__callout strong {
    display: block;
    margin-bottom: 0.38rem;
    color: var(--site-text);
    font-size: 0.95rem;
}

.intello-feature-panel__callout p {
    margin: 0;
    color: var(--site-text-soft);
    font-size: 0.88rem;
    line-height: 1.65;
}

.intello-feature-panel__callout--light {
    background: linear-gradient(180deg, rgba(255, 247, 248, 0.96), rgba(255, 255, 255, 0.96));
    border-color: rgba(235, 35, 60, 0.08);
}

.intello-platform-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6rem;
}

.intello-platform-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 2.2rem;
    border-radius: var(--site-radius);
    color: var(--site-text);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 252, 0.95)),
        rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(15, 23, 42, 0.07);
    box-shadow: var(--site-shadow);
    overflow: hidden;
}

.intello-platform-card::before {
    content: "";
    position: absolute;
    inset: auto -16% -24% auto;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 107, 125, 0.22), transparent 70%);
}

.intello-platform-card .intello-button,
.intello-platform-card .intello-button--disabled {
    margin-top: auto;
}

.intello-platform-card__badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    padding: 0.52rem 0.82rem;
    border-radius: 999px;
    background: rgba(235, 35, 60, 0.08);
    color: var(--site-red);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.intello-platform-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 512px;
    height: clamp(180px, 22vw, 256px);
    margin: 1.25rem auto 1.25rem;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 252, 0.92));
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
    overflow: hidden;
    color: var(--site-red);
    font-size: 4rem;
}

.intello-platform-card__icon--image {
    max-width: 440px;
    height: auto;
    min-height: 132px;
    max-height: 176px;
    aspect-ratio: 5 / 2;
}

.intello-platform-card__icon img {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 1rem 1.25rem;
    object-fit: contain;
    object-position: center;
}

.intello-platform-card__icon--image img {
    padding-block: 0.75rem;
}

.intello-platform-card__icon i {
    font-size: inherit;
}

.intello-platform-card h3 {
    margin: 0;
    font-size: 1.7rem;
}

.intello-platform-card__tagline {
    margin: 0.75rem 0 1.25rem;
    color: var(--site-text-soft);
    line-height: 1.75;
}

.intello-platform-card__features {
    display: grid;
    gap: 0.7rem;
    margin: 0 0 1.5rem;
    padding: 0;
    list-style: none;
    flex: 1 1 auto;
}

.intello-platform-card__features li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--site-text);
    font-size: 0.92rem;
    line-height: 1.5;
}

.intello-platform-card__features i {
    color: var(--site-gold);
    font-size: 0.75rem;
}

.intello-services-overview {
    display: grid;
    grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
    gap: 1.2rem;
    margin-bottom: 2rem;
    align-items: start;
}

.intello-services-overview__stat,
.intello-services-overview__body {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: 0 28px 66px rgba(15, 23, 42, 0.1);
    backdrop-filter: blur(22px);
    align-self: start;
}

.intello-services-overview__stat::before,
.intello-services-overview__body::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.intello-services-overview__stat {
    display: grid;
    align-content: start;
    gap: 0.85rem;
    padding: 1.45rem;
    background:
        radial-gradient(circle at top left, rgba(255, 107, 125, 0.2), transparent 36%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 252, 0.92));
}

.intello-services-overview__stat::before {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 42%),
        linear-gradient(0deg, rgba(15, 23, 42, 0.02), rgba(15, 23, 42, 0.02));
}

.intello-services-overview__body {
    display: grid;
    gap: 1rem;
    padding: 1.45rem;
    align-content: start;
    background:
        radial-gradient(circle at 100% 0, rgba(255, 159, 67, 0.12), transparent 28%),
        radial-gradient(circle at 0 100%, rgba(255, 107, 125, 0.1), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 248, 251, 0.9));
}

.intello-services-overview__body::before {
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.14), transparent 66%);
}

.intello-services-overview__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    padding: 0.48rem 0.72rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    color: var(--site-red);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 16px 28px rgba(15, 23, 42, 0.06);
}

.intello-services-overview__value {
    display: grid;
    gap: 0.55rem;
}

.intello-services-overview__value strong {
    display: block;
    color: var(--site-text);
    font-size: clamp(3.4rem, 7vw, 5rem);
    letter-spacing: -0.05em;
    line-height: 0.88;
}

.intello-services-overview__value span {
    max-width: 100%;
    color: var(--site-text);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.45;
}

.intello-services-overview__stat p,
.intello-services-overview__body p {
    margin: 0;
    color: var(--site-text-soft);
    line-height: 1.75;
}

.intello-services-overview__stat p {
    max-width: 100%;
}

.intello-services-overview__signals {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-auto-rows: 1fr;
    justify-items: stretch;
    gap: 0.7rem;
    margin-top: 0.15rem;
}

.intello-services-overview__signals > span {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    justify-content: flex-start;
    gap: 0.6rem;
    width: 100%;
    min-width: 0;
    min-height: 62px;
    padding: 0.62rem 0.9rem;
    box-sizing: border-box;
    justify-self: stretch;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.74);
    color: var(--site-text);
    font-size: 0.92rem;
    font-weight: 700;
    box-shadow: 0 14px 24px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    opacity: 0;
    transform: translateY(16px) scale(0.985);
    transition:
        opacity 420ms ease,
        transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 220ms ease,
        border-color 220ms ease,
        background 220ms ease;
}

.intello-services-overview__signals > span::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(118deg, transparent 18%, rgba(255, 255, 255, 0.34) 50%, transparent 82%);
    transform: translateX(-130%);
    transition: transform 460ms ease;
    pointer-events: none;
}

.intello-services-overview.is-visible .intello-services-overview__signals > span {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.intello-services-overview__signals .site-icon {
    color: var(--site-red);
    font-size: 0.92rem;
    transition: transform 220ms ease, color 220ms ease;
}

.intello-services-overview.is-visible .intello-services-overview__signals > span:nth-child(1) {
    transition-delay: 40ms;
}

.intello-services-overview.is-visible .intello-services-overview__signals > span:nth-child(2) {
    transition-delay: 110ms;
}

.intello-services-overview.is-visible .intello-services-overview__signals > span:nth-child(3) {
    transition-delay: 180ms;
}

.intello-services-overview__signals > span:hover,
.intello-services-overview__signals > span:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(235, 35, 60, 0.18);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 20px 34px rgba(15, 23, 42, 0.1);
}

.intello-services-overview__signals > span:hover::after,
.intello-services-overview__signals > span:focus-visible::after {
    transform: translateX(130%);
}

.intello-services-overview__signals > span:hover .site-icon,
.intello-services-overview__signals > span:focus-visible .site-icon {
    transform: translateY(-1px) scale(1.08);
}

.intello-services-overview__header,
.intello-services-overview__copy,
.intello-services-overview__footer {
    position: relative;
    z-index: 1;
}

.intello-services-overview__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.intello-services-overview__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 40px;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--site-text);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 14px 24px rgba(15, 23, 42, 0.06);
}

.intello-services-overview__eyebrow .site-icon {
    color: var(--site-red);
    font-size: 0.92rem;
}

.intello-services-overview__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.55rem;
}

.intello-services-overview__meta > span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.6);
    color: var(--site-text-soft);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.intello-services-overview__copy h3 {
    margin: 0 0 0.6rem;
    max-width: 26ch;
    color: var(--site-text);
    font-size: clamp(1.35rem, 2vw, 1.9rem);
    line-height: 1.15;
}

.intello-services-overview__copy p {
    max-width: 66ch;
}

.intello-service-tag-cloud {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.72rem;
    align-items: start;
}

.intello-service-tag-cloud > span {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: center;
    gap: 0.7rem;
    min-width: 0;
    min-height: 68px;
    height: auto;
    padding: 0.56rem 0.72rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.86);
    color: var(--site-text);
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.34;
    box-shadow: 0 16px 28px rgba(15, 23, 42, 0.06);
    transition:
        opacity 460ms ease,
        transform 460ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 220ms ease,
        border-color 220ms ease,
        background 220ms ease;
    align-self: start;
    opacity: 0;
    transform: translateY(18px) scale(0.985);
}

.intello-services-overview.is-visible .intello-service-tag-cloud > span {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.intello-service-tag-cloud > span:hover,
.intello-service-tag-cloud > span:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(235, 35, 60, 0.12);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 20px 34px rgba(15, 23, 42, 0.09);
}

.intello-service-tag-cloud__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 253, 0.9));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 10px 18px rgba(15, 23, 42, 0.05);
    transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.intello-service-tag-cloud__text {
    min-width: 0;
    line-height: 1.45;
}

.intello-service-tag-cloud__icon .site-icon {
    color: var(--site-red);
    font-size: 0.84rem;
    transition: transform 220ms ease, color 220ms ease;
}

.intello-service-tag-cloud > span:hover .intello-service-tag-cloud__icon,
.intello-service-tag-cloud > span:focus-visible .intello-service-tag-cloud__icon {
    transform: translateY(-1px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 14px 22px rgba(15, 23, 42, 0.08);
}

.intello-service-tag-cloud > span:hover .intello-service-tag-cloud__icon .site-icon,
.intello-service-tag-cloud > span:focus-visible .intello-service-tag-cloud__icon .site-icon {
    transform: scale(1.08);
}

.intello-services-overview.is-visible .intello-service-tag-cloud > span:nth-child(1) {
    transition-delay: 40ms;
}

.intello-services-overview.is-visible .intello-service-tag-cloud > span:nth-child(2) {
    transition-delay: 80ms;
}

.intello-services-overview.is-visible .intello-service-tag-cloud > span:nth-child(3) {
    transition-delay: 120ms;
}

.intello-services-overview.is-visible .intello-service-tag-cloud > span:nth-child(4) {
    transition-delay: 160ms;
}

.intello-services-overview.is-visible .intello-service-tag-cloud > span:nth-child(5) {
    transition-delay: 200ms;
}

.intello-services-overview.is-visible .intello-service-tag-cloud > span:nth-child(6) {
    transition-delay: 240ms;
}

.intello-services-overview.is-visible .intello-service-tag-cloud > span:nth-child(7) {
    transition-delay: 280ms;
}

.intello-services-overview.is-visible .intello-service-tag-cloud > span:nth-child(8) {
    transition-delay: 320ms;
}

.intello-services-overview.is-visible .intello-service-tag-cloud > span:nth-child(9) {
    transition-delay: 360ms;
}

.intello-services-overview.is-visible .intello-service-tag-cloud > span:nth-child(10) {
    transition-delay: 400ms;
}

.intello-services-overview.is-visible .intello-service-tag-cloud > span:nth-child(11) {
    transition-delay: 440ms;
}

.intello-services-overview.is-visible .intello-service-tag-cloud > span:nth-child(12) {
    transition-delay: 480ms;
}

@media (prefers-reduced-motion: reduce) {
    .intello-services-overview__signals > span,
    .intello-service-tag-cloud > span,
    .intello-services-overview__signals .site-icon,
    .intello-service-tag-cloud__icon,
    .intello-service-tag-cloud__icon .site-icon {
        transition: none !important;
        animation: none !important;
    }

    .intello-services-overview__signals > span,
    .intello-service-tag-cloud > span {
        opacity: 1;
        transform: none;
    }
}

.intello-services-overview__footer {
    padding: 1rem 1.1rem;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.68));
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.06);
}

.intello-services-overview__footer strong {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--site-text);
    font-size: 0.95rem;
    line-height: 1.45;
}

.intello-services-overview__footer p {
    font-size: 0.92rem;
    line-height: 1.72;
}

.intello-services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    align-content: start;
    column-gap: 1.4rem;
    row-gap: 3.2rem;
}

.intello-service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 100%;
    padding: 1.5rem;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(15, 23, 42, 0.07);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 253, 0.98));
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.intello-service-card::before {
    content: "";
    position: absolute;
    inset: auto -18% -36% 38%;
    height: 180px;
    border-radius: 999px;
    background: radial-gradient(circle, var(--service-accent-soft), transparent 68%);
    pointer-events: none;
}

.intello-service-card:hover,
.intello-service-card:focus-within {
    transform: translateY(-6px);
    box-shadow: 0 22px 42px rgba(15, 23, 42, 0.12);
}

.intello-service-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.intello-service-card__index,
.intello-service-card__badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0.42rem 0.72rem;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.intello-service-card__index {
    background: rgba(15, 23, 42, 0.06);
    color: var(--site-text);
}

.intello-service-card__badge {
    color: var(--service-accent);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.intello-service-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--service-accent);
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.08);
    font-size: 1.35rem;
}

.intello-service-card__icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.intello-service-card h3 {
    margin: 0;
    color: var(--site-text);
    font-size: 1.22rem;
    line-height: 1.28;
}

.intello-service-card p {
    margin: 0;
    color: var(--site-text-soft);
    line-height: 1.75;
}

.intello-service-card ul {
    display: grid;
    gap: 0.7rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.intello-service-card li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: var(--site-text);
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.55;
}

.intello-service-card li i {
    margin-top: 0.28rem;
    color: var(--service-accent);
    font-size: 0.72rem;
}

.intello-service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: auto;
    color: var(--service-accent);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.intello-service-card__link:hover,
.intello-service-card__link:focus-visible {
    color: var(--site-text);
}

.intello-stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 1.5rem;
}

.intello-stat-card {
    padding: 1.65rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: var(--site-shadow);
    text-align: center;
}

.intello-stat-card__value {
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    color: var(--site-red);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1;
}

.intello-stat-card p {
    margin: 0.85rem 0 0;
    color: var(--site-text-soft);
    font-size: 0.95rem;
    font-weight: 600;
}

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

.intello-proof-card {
    padding: 1.55rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: var(--site-shadow);
}

.intello-proof-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
    border-radius: 16px;
    background: rgba(235, 35, 60, 0.08);
    color: var(--site-red);
    font-size: 1.1rem;
}

.intello-proof-card h3 {
    margin: 0 0 0.65rem;
    font-size: 1.02rem;
}

.intello-proof-card p {
    margin: 0;
    color: var(--site-text-soft);
    line-height: 1.7;
    font-size: 0.9rem;
}

.intello-section-heading--left {
    margin-bottom: 1.5rem;
    text-align: left;
    max-width: 860px;
}

.intello-section-heading--left h2,
.intello-section-heading--left p {
    margin-inline: 0;
}

.intello-contact-card input,
.intello-contact-card textarea {
    width: 100%;
    min-height: 58px;
    padding: 0.95rem 1.05rem;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: rgba(255, 255, 255, 0.98);
    color: var(--site-text);
    font: inherit;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.intello-contact-card input:focus,
.intello-contact-card textarea:focus {
    outline: none;
    border-color: rgba(235, 35, 60, 0.24);
    box-shadow: 0 0 0 4px rgba(235, 35, 60, 0.08);
}

.intello-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.intello-contact-card {
    display: grid;
    gap: 1rem;
    padding: 1.8rem;
    border-radius: calc(var(--site-radius) + 4px);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(15, 23, 42, 0.07);
    box-shadow: var(--site-shadow);
}

.intello-contact-card--accent {
    background:
        radial-gradient(circle at top right, rgba(255, 159, 67, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 247, 251, 0.95));
}

.intello-contact-card__tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 34px;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    background: rgba(235, 35, 60, 0.08);
    color: var(--site-red);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.intello-contact-card h3 {
    margin: 0;
    font-size: 1.85rem;
    line-height: 1.2;
}

.intello-contact-card p {
    margin: 0;
    color: var(--site-text-soft);
    line-height: 1.8;
}

.intello-contact-list {
    display: grid;
    gap: 0.85rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.intello-contact-list li {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    align-items: start;
    gap: 0.8rem;
    color: var(--site-text-soft);
    line-height: 1.8;
}

.intello-contact-list i {
    color: var(--site-red);
    margin-top: 0.2rem;
}

.intello-contact-list a {
    color: var(--site-text);
    text-decoration: none;
    font-weight: 600;
}

.intello-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.intello-contact-map {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, 0.07);
    background: #f8fbfd;
}

.intello-contact-map iframe {
    width: 100%;
    min-height: 280px;
    border: 0;
    display: block;
}

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

.intello-industry-card {
    position: relative;
    padding: 1.7rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: var(--site-shadow);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.intello-industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 70px rgba(5, 12, 24, 0.16);
    border-color: rgba(235, 35, 60, 0.16);
}

.intello-industry-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(235, 35, 60, 0.1), rgba(255, 159, 67, 0.1));
    color: var(--site-red);
    font-size: 1.2rem;
}

.intello-industry-card h3 {
    margin: 0;
    font-size: 1.02rem;
}

.intello-cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.3rem;
    border-radius: calc(var(--site-radius) + 4px);
    color: var(--site-text);
    background:
        radial-gradient(circle at top left, rgba(255, 107, 125, 0.16), transparent 30%),
        linear-gradient(135deg, #ffffff, #f3f7fb 58%, #eef3f8);
    border: 1px solid rgba(15, 23, 42, 0.07);
    box-shadow: var(--site-shadow);
    overflow: hidden;
}

.intello-cta::after {
    content: "";
    position: absolute;
    top: -40px;
    right: -30px;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 159, 67, 0.18), transparent 72%);
}

.intello-cta__copy {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.intello-cta__copy .intello-eyebrow {
    color: var(--site-red);
    background: rgba(235, 35, 60, 0.08);
    border-color: rgba(235, 35, 60, 0.16);
}

.intello-cta__copy h2 {
    margin: 1rem 0 0.8rem;
    font-size: clamp(2.1rem, 5vw, 3.1rem);
}

.intello-cta__copy p {
    margin: 0;
    color: var(--site-text-soft);
    line-height: 1.8;
}

.intello-cta__actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.9rem;
}

.site-footer {
    color: var(--site-text);
    background:
        radial-gradient(circle at top left, rgba(255, 107, 125, 0.1), transparent 24%),
        linear-gradient(180deg, #f8fbfd, #edf3f8);
    border-top: 1px solid rgba(15, 23, 42, 0.07);
    padding: 80px 0 32px;
    content-visibility: auto;
    contain-intrinsic-size: 640px;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.8fr));
    gap: 2rem;
}

.site-footer__logo {
    width: auto;
    height: 62px;
}

.site-footer__summary {
    margin: 1.2rem 0 1.4rem;
    color: var(--site-text-soft);
    line-height: 1.8;
    max-width: 360px;
}

.site-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.site-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--site-text);
    border: 1px solid rgba(15, 23, 42, 0.07);
    text-decoration: none;
    transition: transform 180ms ease, background 180ms ease;
}

.site-footer__social a:hover {
    transform: translateY(-2px);
    background: rgba(235, 35, 60, 0.06);
}

.site-footer__links h3,
.site-footer__contact h3 {
    margin: 0 0 1rem;
    font-size: 1.02rem;
}

.site-footer__links ul,
.site-footer__contact ul {
    display: grid;
    gap: 0.9rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__links a,
.site-footer__contact a {
    color: var(--site-text-soft);
    text-decoration: none;
    transition: color 180ms ease;
}

.site-footer__links a:hover,
.site-footer__contact a:hover {
    color: var(--site-red);
}

.site-footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--site-text-soft);
    line-height: 1.7;
}

.site-footer__contact i {
    margin-top: 0.18rem;
    color: var(--site-red-soft);
}

.site-footer__clients {
    margin-top: 2.4rem;
    padding-top: 1.8rem;
    border-top: 1px solid rgba(15, 23, 42, 0.07);
}

.site-footer__clients-title {
    display: inline-flex;
    margin-bottom: 1rem;
    color: var(--site-text-soft);
    font-size: 0.86rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.site-footer__client-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.9rem;
}

.site-footer__client-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 84px;
    padding: 0.9rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(15, 23, 42, 0.07);
}

.site-footer__client-card img {
    max-width: 100%;
    max-height: 40px;
    object-fit: contain;
    filter: grayscale(1) brightness(1.15);
    opacity: 0.9;
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.6rem;
    border-top: 1px solid rgba(15, 23, 42, 0.07);
    color: var(--site-text-soft);
    font-size: 0.84rem;
}

[data-reveal] {
    --reveal-x: 0px;
    --reveal-y: 56px;
    --reveal-scale: 0.985;
    --reveal-rotate: 0deg;
    --reveal-blur: 12px;
    --reveal-duration: 860ms;
    --reveal-delay: 0ms;
    --reveal-ease: cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0;
    transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale)) rotate(var(--reveal-rotate));
    filter: blur(var(--reveal-blur));
    transition:
        opacity var(--reveal-duration) var(--reveal-ease) var(--reveal-delay),
        transform var(--reveal-duration) var(--reveal-ease) var(--reveal-delay),
        filter calc(var(--reveal-duration) * 0.82) ease-out var(--reveal-delay);
    will-change: opacity, transform, filter;
    backface-visibility: hidden;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    filter: blur(0);
}

@media (min-width: 1200px) {
    .intello-hero__actions {
        display: grid;
        grid-template-columns: repeat(3, max-content);
        width: max-content;
        max-width: 100%;
        flex-wrap: nowrap;
    }
}

@media (max-width: 1100px) {

    .intello-services-overview {
        grid-template-columns: 1fr;
    }

    .intello-service-tag-cloud {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .intello-services-overview__copy h3 {
        max-width: 100%;
    }

    .intello-services-overview__meta {
        justify-content: flex-start;
    }

    .intello-hero__layout,
    .intello-platform-grid,
    .intello-services-grid,
    .intello-proof-grid,
    .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .intello-hero__layout {
        gap: 2.5rem;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

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

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

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

@media (max-width: 1480px) {
    .site-header__utility-pills {
        display: none;
    }

    .site-header__utility-inner {
        justify-content: center;
    }

    .site-header__main {
        width: min(1360px, calc(100% - 32px));
    }

    .site-nav__link {
        padding-inline: 0.62rem;
        font-size: 0.86rem;
    }

    .site-header__actions .intello-button {
        padding-inline: 1rem;
        font-size: 0.88rem;
    }

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

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

@media (max-width: 1023px) {
    :root {
        --site-container: min(100% - 32px, 100%);
        --site-container-wide: min(100% - 32px, 100%);
        --site-header-offset: 98px;
    }

    .site-header__utility {
        display: none;
    }

    .site-header__main {
        min-height: 98px;
        width: var(--site-container);
    }

    .site-header__menu-toggle {
        display: inline-flex;
        flex-direction: column;
    }

    .site-header__panel {
        position: absolute;
        top: calc(100% + 14px);
        right: 16px;
        left: 16px;
        display: grid;
        gap: 1.2rem;
        padding: 1.2rem;
        border-radius: 24px;
        border: 1px solid rgba(15, 23, 42, 0.08);
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .site-header__panel.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-nav,
    .site-header__actions {
        width: 100%;
        display: grid;
    }

    .site-nav__item {
        width: 100%;
    }

    .site-nav__trigger {
        justify-content: space-between;
        width: 100%;
    }

    .site-nav__link {
        width: 100%;
        min-height: 46px;
        padding-inline: 0;
        border-radius: 0;
    }

    .site-nav__toggle {
        width: 42px;
        height: 42px;
        margin-left: 0;
    }

    .site-nav__dropdown {
        position: static;
        display: none;
        min-width: 100%;
        margin-top: 0.25rem;
        padding: 0.35rem 0 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .site-nav__item.is-open > .site-nav__dropdown {
        display: grid;
    }

    .site-nav__dropdown-link {
        padding-inline: 0;
        color: var(--site-text-soft);
    }

    .site-header__actions {
        gap: 0.75rem;
    }

    .site-header__actions .intello-button {
        width: 100%;
    }

    .intello-home {
        background:
            radial-gradient(circle at 0 10%, rgba(255, 102, 122, 0.14), transparent 24%),
            linear-gradient(180deg, #fbfdff 0, #edf3f8 100%);
    }

    .intello-home__section {
        padding: 80px 0;
    }

    .intello-home__section--lift {
        padding-top: 72px;
    }

    .intello-home__section--lift::before {
        inset: -110px 0 auto;
        height: 136px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(247, 250, 252, 0.62) 42%, rgba(251, 253, 255, 0.98) 100%);
    }

    .intello-hero {
        min-height: auto;
        padding-bottom: 88px;
    }

    .intello-hero__layout,
    .intello-dual-grid {
        grid-template-columns: 1fr;
    }

    .intello-hero__visual {
        min-height: 720px;
    }

    .intello-floating-card {
        width: min(212px, 38vw);
        opacity: 0.82;
    }

    .intello-floating-card--chat {
        top: 16px;
        left: 0;
    }

    .intello-floating-card--hub {
        right: 0;
        bottom: 20px;
    }

    .intello-floating-card--edu {
        left: 0;
        bottom: 20px;
    }

    .intello-dashboard {
        top: 126px;
        left: 50%;
        width: min(540px, calc(100% - 40px));
        max-width: 540px;
        transform: translateX(-50%);
    }

    .intello-contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    :root {
        --site-container: min(100% - 24px, 100%);
        --site-container-wide: min(100% - 24px, 100%);
        --site-header-offset: 88px;
    }

    .site-header__main {
        min-height: 88px;
    }

    .site-header {
        background: rgba(255, 255, 255, 0.97);
        box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
        backdrop-filter: none;
    }

    .site-header__logo {
        height: 38px;
    }

    .intello-hero {
        min-height: auto;
        padding-top: 12px;
    }

    .intello-hero__orb,
    .intello-hero__grid {
        display: none;
    }

    .intello-contact-card {
        padding: 1.3rem;
    }

    .intello-contact-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .intello-contact-actions .intello-button {
        width: 100%;
    }

    .intello-hero::after,
    .intello-home__section--lift::before {
        display: none;
    }

    .intello-hero__title {
        font-size: clamp(2.4rem, 12vw, 3.8rem);
    }

    .intello-hero__copy {
        font-size: 1rem;
    }

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

    .intello-hero__actions .intello-button,
    .intello-cta__actions .intello-button {
        width: 100%;
    }

    .intello-hero__visual {
        min-height: 760px;
    }

    .intello-floating-card {
        width: min(calc(50% - 8px), 172px);
        opacity: 0.82;
    }

    .intello-service-tags {
        grid-template-columns: 1fr;
    }

    .intello-floating-card--chat {
        top: 16px;
        left: 0;
    }

    .intello-floating-card--hub {
        right: 0;
        bottom: 20px;
    }

    .intello-floating-card--edu {
        left: 0;
        bottom: 20px;
    }

    .intello-dashboard {
        top: 126px;
        left: 50%;
        right: auto;
        width: calc(100% - 24px);
        max-width: 520px;
        transform: translateX(-50%);
    }

    .intello-button--ghost,
    .intello-floating-card,
    .intello-dashboard__frame {
        backdrop-filter: none;
    }

    .intello-floating-card,
    .intello-dashboard__frame {
        box-shadow: 0 18px 36px rgba(15, 23, 42, 0.1);
    }

    .intello-services-overview__stat,
    .intello-services-overview__body {
        backdrop-filter: none;
    }

    .intello-services-overview__signals > span {
        width: 100%;
    }

    .intello-dashboard__metrics,
    .intello-dashboard__body,
    .intello-platform-grid,
    .intello-services-grid,
    .intello-proof-grid,
    .intello-stats-grid,
    .intello-industry-grid,
    .intello-contact-grid,
    .site-footer__grid,
    .site-footer__client-grid {
        grid-template-columns: 1fr;
    }

    .intello-feature-panel,
    .intello-platform-card,
    .intello-service-card,
    .intello-proof-card,
    .intello-industry-card,
    .intello-cta,
    .intello-stat-card {
        padding: 1.45rem;
    }

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

    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    :root {
        --site-container: min(100% - 20px, 100%);
        --site-container-wide: min(100% - 20px, 100%);
        --site-header-offset: 80px;
    }

    .site-header__main {
        min-height: 80px;
        gap: 0.85rem;
    }

    .site-header__logo {
        height: clamp(32px, 8vw, 36px);
    }

    .site-header__menu-toggle {
        width: 56px;
        height: 56px;
        border-radius: 20px;
        flex-shrink: 0;
    }

    .intello-home__section {
        padding: 64px 0;
    }

    .intello-home__section--lift {
        padding-top: 56px;
    }

    .intello-section-heading--left {
        margin-bottom: 1rem;
    }

    .intello-hero {
        padding: 8px 0 64px;
    }

    .intello-hero__title {
        font-size: clamp(2.1rem, 11vw, 3rem);
    }

    .intello-hero__copy {
        font-size: 0.95rem;
        line-height: 1.72;
    }

    .intello-hero__signals {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.65rem;
    }

    .intello-hero__signals span {
        width: 100%;
        justify-content: flex-start;
    }

    .intello-hero__visual {
        display: flex;
        flex-direction: column;
        gap: 0.85rem;
        min-height: auto;
    }

    .intello-floating-card {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: 100%;
        padding: 0.85rem;
        opacity: 0.92;
        animation: none;
    }

    .intello-floating-card__icon {
        width: 42px;
        height: 42px;
        border-radius: 14px;
    }

    .intello-floating-card__icon img {
        width: 22px;
        height: 22px;
    }

    .intello-floating-card__label {
        font-size: 0.82rem;
    }

    .intello-floating-card p {
        font-size: 0.72rem;
        -webkit-line-clamp: 2;
    }

    .intello-floating-card--chat {
        order: 1;
    }

    .intello-floating-card--hub {
        order: 2;
    }

    .intello-floating-card--edu {
        order: 3;
    }

    .intello-dashboard {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        width: 100%;
        max-width: none;
        transform: none;
        order: 4;
    }

    .intello-dashboard__frame {
        padding: 1rem;
        border-radius: 24px;
    }

    .intello-dashboard__topbar {
        flex-direction: column;
        align-items: stretch;
        gap: 0.65rem;
        margin-bottom: 0.85rem;
    }

    .intello-dashboard__badge,
    .intello-dashboard__status {
        justify-content: center;
        padding: 0.48rem 0.72rem;
        font-size: 0.74rem;
    }

    .intello-dashboard__metrics {
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .intello-dashboard__metric {
        padding: 0.9rem;
        border-radius: 18px;
    }

    .intello-dashboard__metric strong {
        font-size: 1.3rem;
    }

    .intello-dashboard__chart {
        min-height: 214px;
        padding: 1rem;
        border-radius: 20px;
    }

    .intello-dashboard__chart-header h2 {
        font-size: 1rem;
    }

    .intello-dashboard__chart-header span {
        display: block;
        max-width: 28ch;
        font-size: 0.8rem;
    }

    .intello-dashboard__chart-lines {
        inset: 76px 1rem 1rem;
    }

    .intello-dashboard__chart-wave {
        right: 1rem;
        bottom: 0.85rem;
        left: 1rem;
        height: 118px;
    }

    .intello-dashboard__stack {
        gap: 0.75rem;
    }

    .intello-dashboard__stack-card {
        padding: 0.95rem 1rem;
        border-radius: 20px;
    }

    .intello-dashboard__stack-card strong {
        font-size: 0.95rem;
        line-height: 1.45;
    }

    .intello-feature-panel,
    .intello-platform-card,
    .intello-service-card,
    .intello-proof-card,
    .intello-industry-card,
    .intello-cta,
    .intello-stat-card {
        padding: 1.2rem;
        border-radius: 24px;
    }

    .intello-feature-panel__meta {
        gap: 0.55rem;
    }

    .intello-feature-pill {
        width: 100%;
        justify-content: center;
    }

    .intello-feature-panel__header {
        gap: 0.85rem;
    }

    .intello-feature-panel__icon {
        width: 56px;
        height: 56px;
    }

    .intello-feature-panel__header h3 {
        font-size: 1.45rem;
    }

    .intello-services-overview__stat,
    .intello-services-overview__body {
        padding: 1.2rem;
        border-radius: 24px;
    }

    .intello-services-overview__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .intello-services-overview__meta {
        width: 100%;
        justify-content: flex-start;
    }

    .intello-services-overview__meta > span,
    .intello-services-overview__signals > span,
    .intello-services-overview__eyebrow {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .intello-services-overview__value span,
    .intello-services-overview__stat p,
    .intello-services-overview__copy p {
        max-width: 100%;
    }

    .intello-service-tag-cloud {
        grid-template-columns: 1fr;
        gap: 0.55rem;
    }

    .intello-service-tag-cloud > span {
        width: 100%;
        justify-content: flex-start;
        text-align: left;
    }

    .intello-service-card__top {
        flex-direction: column;
        align-items: flex-start;
    }

    .intello-mini-card {
        padding: 1rem;
    }

    .intello-mini-card__top {
        gap: 0.65rem;
    }

    .intello-mini-card__title {
        min-width: 0;
        flex-basis: 100%;
    }

    .intello-mini-card__status {
        width: 100%;
        justify-content: flex-start;
    }

    .intello-service-tags span {
        font-size: 0.76rem;
        padding: 0.52rem 0.65rem;
    }
}

@media (max-width: 430px) {
    :root {
        --site-container: min(100% - 16px, 100%);
        --site-container-wide: min(100% - 16px, 100%);
        --site-header-offset: 76px;
    }

    .site-header__main {
        min-height: 76px;
        gap: 0.65rem;
        width: var(--site-container);
    }

    .site-header__logo {
        height: 32px;
    }

    .site-header__menu-toggle {
        width: 52px;
        height: 52px;
        border-radius: 18px;
    }

    .intello-home__section {
        padding: 56px 0;
    }

    .intello-hero {
        padding: 6px 0 56px;
    }

    .intello-hero__title {
        font-size: clamp(1.95rem, 10.8vw, 2.7rem);
        line-height: 0.98;
    }

    .intello-hero__copy {
        font-size: 0.92rem;
        line-height: 1.65;
    }

    .intello-button,
    .intello-feature-panel__button,
    .intello-service-card__link {
        min-height: 52px;
        padding: 0.82rem 1rem;
        border-radius: 20px;
        white-space: normal;
        line-height: 1.28;
        text-align: center;
    }

    .intello-hero__actions,
    .intello-cta__actions {
        gap: 0.7rem;
    }

    .intello-hero__actions .intello-button,
    .intello-cta__actions .intello-button,
    .intello-feature-panel__button,
    .intello-service-card__link {
        width: 100%;
        justify-content: center;
    }

    .intello-dashboard__frame {
        padding: 0.9rem;
        border-radius: 22px;
    }

    .intello-dashboard__metric {
        padding: 0.82rem;
    }

    .intello-dashboard__metric strong {
        font-size: 1.18rem;
    }

    .intello-dashboard__chart {
        min-height: 196px;
        padding: 0.95rem;
        border-radius: 18px;
    }

    .intello-dashboard__chart-lines {
        inset: 72px 0.95rem 0.95rem;
    }

    .intello-dashboard__chart-wave {
        left: 0.95rem;
        right: 0.95rem;
        height: 104px;
    }

    .intello-dashboard__stack-card {
        padding: 0.92rem;
        border-radius: 18px;
    }

    .intello-feature-panel,
    .intello-platform-card,
    .intello-service-card,
    .intello-proof-card,
    .intello-industry-card,
    .intello-cta,
    .intello-stat-card {
        padding: 1rem;
        border-radius: 22px;
    }

    .intello-feature-panel__meta {
        gap: 0.5rem;
        margin-bottom: 0.95rem;
    }

    .intello-feature-panel__header {
        flex-direction: column;
        gap: 0.72rem;
        margin-bottom: 1.1rem;
    }

    .intello-feature-panel__icon {
        width: 52px;
        height: 52px;
        border-radius: 16px;
    }

    .intello-feature-panel__header h3 {
        font-size: 1.28rem;
    }

    .intello-feature-panel__header p,
    .intello-feature-panel__callout p {
        font-size: 0.9rem;
        line-height: 1.62;
    }

    .intello-mini-card {
        padding: 0.92rem;
        border-radius: 18px;
    }

    .intello-mini-card__title {
        gap: 0.72rem;
    }

    .intello-mini-card__logo {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .intello-mini-card__details h4 {
        font-size: 0.94rem;
    }

    .intello-mini-card__details span {
        font-size: 0.8rem;
        line-height: 1.45;
    }

    .intello-service-tags span {
        min-height: 34px;
        padding: 0.5rem 0.6rem;
        font-size: 0.74rem;
        border-radius: 12px;
    }

    .intello-services-overview {
        gap: 1rem;
    }

    .intello-services-overview__label {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .intello-services-overview__value strong {
        font-size: clamp(3.15rem, 20vw, 4.2rem);
    }

    .intello-services-overview__value span,
    .intello-services-overview__stat p,
    .intello-services-overview__copy p {
        font-size: 0.92rem;
        line-height: 1.65;
    }

    .intello-services-overview__copy h3 {
        font-size: clamp(1.2rem, 7.2vw, 1.55rem);
        line-height: 1.12;
    }

    .intello-services-overview__meta > span,
    .intello-services-overview__eyebrow {
        min-height: 38px;
        padding: 0.52rem 0.72rem;
        font-size: 0.72rem;
        letter-spacing: 0.03em;
    }

    .intello-services-overview__signals {
        gap: 0.6rem;
    }

    .intello-services-overview__signals > span {
        grid-template-columns: 34px minmax(0, 1fr);
        min-height: 56px;
        padding: 0.56rem 0.78rem;
        border-radius: 20px;
        font-size: 0.88rem;
        text-align: left;
    }

    .intello-services-overview__signals .site-icon {
        font-size: 0.84rem;
    }

    .intello-service-tag-cloud > span {
        grid-template-columns: 36px minmax(0, 1fr);
        min-height: 58px;
        padding: 0.52rem 0.62rem;
        border-radius: 18px;
        font-size: 0.82rem;
        line-height: 1.28;
    }

    .intello-service-tag-cloud__icon {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
        border-radius: 12px;
    }

    .intello-service-tag-cloud__icon .site-icon {
        font-size: 0.76rem;
    }

    .intello-service-card {
        gap: 0.82rem;
    }

    .intello-service-card__top {
        gap: 0.55rem;
    }

    .intello-service-card__index,
    .intello-service-card__badge {
        min-height: 30px;
        padding: 0.36rem 0.62rem;
        font-size: 0.7rem;
    }

    .intello-service-card__icon {
        width: 56px;
        height: 56px;
        border-radius: 18px;
        font-size: 1.2rem;
    }

    .intello-service-card__icon img {
        width: 26px;
        height: 26px;
    }

    .intello-service-card h3 {
        font-size: 1.12rem;
        line-height: 1.24;
    }

    .intello-service-card p,
    .intello-service-card li {
        font-size: 0.92rem;
        line-height: 1.58;
    }

    .site-footer__contact {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 390px) {
    .intello-hero__title {
        font-size: clamp(1.82rem, 10.4vw, 2.42rem);
    }

    .intello-button,
    .intello-feature-panel__button,
    .intello-service-card__link {
        min-height: 50px;
        font-size: 0.88rem;
    }

    .intello-services-overview__meta > span,
    .intello-services-overview__eyebrow {
        font-size: 0.69rem;
    }

    .intello-services-overview__signals > span,
    .intello-service-tag-cloud > span {
        font-size: 0.8rem;
    }

    .intello-feature-pill,
    .intello-service-tags span {
        font-size: 0.72rem;
    }
}

@media (prefers-reduced-motion: reduce) {

    [data-reveal] {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }
}
