:root {
    color-scheme: light;

    --clem-primary: #1e5dab;
    --clem-primary-dark: #0e2b5b;
    --clem-primary-light: #e8f4fb;
    --clem-accent: #007a45;
    --clem-success: #16794b;

    --clem-bg: #f6f8fc;
    --clem-surface: #ffffff;
    --clem-surface-muted: #eef3f8;

    --clem-text: #15233b;
    --clem-text-muted: #526176;
    --clem-text-on-dark: #ffffff;

    --clem-border: #d8e0ea;
    --clem-border-strong: #a9b6c7;
    --clem-focus-ring: rgba(2, 108, 254, 0.32);

    --clem-space-xs: 0.25rem;
    --clem-space-sm: 0.5rem;
    --clem-space-md: 1rem;
    --clem-space-lg: 1.5rem;
    --clem-space-xl: 2rem;
    --clem-space-2xl: 3rem;
    --clem-space-3xl: 4.5rem;

    --clem-radius-sm: 0.375rem;
    --clem-radius-md: 0.75rem;
    --clem-radius-lg: 1.125rem;
    --clem-radius-xl: 1.5rem;

    --clem-shadow-sm: 0 0.125rem 0.5rem rgba(14, 43, 91, 0.08);
    --clem-shadow-md: 0 0.75rem 2rem rgba(14, 43, 91, 0.12);
    --clem-shadow-lg: 0 1.5rem 4rem rgba(14, 43, 91, 0.16);
}

html {
    min-width: 20rem;
    background: var(--clem-bg);
}

body {
    min-height: 100vh;
    margin: 0;
    background: var(--clem-bg);
    color: var(--clem-text);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    margin-block: 0 0.75em;
    color: var(--clem-primary-dark);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.25rem, 6vw, 3.5rem);
}

h2 {
    font-size: clamp(1.875rem, 4vw, 2.5rem);
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-block: 0 1rem;
}

a {
    color: var(--clem-primary);
    text-underline-offset: 0.18em;
}

a:hover {
    color: var(--clem-primary-dark);
}

button,
input,
textarea,
select {
    color: inherit;
    font: inherit;
}

:where(a, button, input, textarea, select, [tabindex]):focus-visible {
    outline: 0.1875rem solid var(--clem-focus-ring);
    outline-offset: 0.1875rem;
}

.skip-link {
    position: fixed;
    z-index: 1100;
    top: var(--clem-space-md);
    left: var(--clem-space-md);
    transform: translateY(calc(-100% - 2rem));
    padding: 0.75rem 1rem;
    border-radius: var(--clem-radius-sm);
    background: var(--clem-primary-dark);
    color: var(--clem-text-on-dark);
    box-shadow: var(--clem-shadow-md);
    font-weight: 700;
    text-decoration: none;
    transition: transform 150ms ease;
}

.skip-link:focus-visible {
    transform: translateY(0);
    color: var(--clem-text-on-dark);
}

.site-section {
    padding-block: var(--clem-space-3xl);
}

.site-section--muted {
    background: var(--clem-surface-muted);
}

.site-container {
    width: min(calc(100% - 2rem), 72rem);
    margin-inline: auto;
}

.btn-clem-primary,
.btn-clem-secondary {
    display: inline-flex;
    min-height: 3rem;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.375rem;
    border: 0.0625rem solid transparent;
    border-radius: var(--clem-radius-md);
    font-weight: 700;
    line-height: 1.25;
    transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease, transform 150ms ease;
}

.btn-clem-primary {
    border-color: var(--clem-primary);
    background: var(--clem-primary);
    color: var(--clem-text-on-dark);
}

.btn-clem-primary:hover {
    border-color: var(--clem-primary-dark);
    background: var(--clem-primary-dark);
    color: var(--clem-text-on-dark);
}

.btn-clem-primary:active {
    transform: translateY(0.0625rem);
}

.btn-clem-secondary {
    border-color: var(--clem-border-strong);
    background: var(--clem-surface);
    color: var(--clem-primary-dark);
}

.btn-clem-secondary:hover {
    border-color: var(--clem-primary);
    background: var(--clem-primary-light);
    color: var(--clem-primary-dark);
}

.btn-clem-primary:focus-visible,
.btn-clem-secondary:focus-visible {
    outline: 0.1875rem solid transparent;
    box-shadow: 0 0 0 0.25rem var(--clem-focus-ring);
}

.btn-clem-primary:disabled,
.btn-clem-secondary:disabled,
.btn-clem-primary.disabled,
.btn-clem-secondary.disabled {
    pointer-events: none;
    opacity: 0.56;
}

/* NAVBAR */
.clem-shell {
    width: 100%;
    max-width: 104.5rem;
    margin-inline: auto;
    padding-inline: clamp(1.75rem, 4.43vw, 4.625rem);
}

.site-header {
    position: sticky;
    z-index: 1020;
    top: 0;
    height: 5.5rem;
    border-bottom: 0.0625rem solid rgba(105, 170, 240, 0.12);
    background: #020b1d;
}

.clem-navbar {
    min-height: 5.5rem;
    padding: 0;
}

.clem-navbar__shell {
    display: flex;
    min-height: 5.5rem;
    align-items: center;
}

.clem-navbar__brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    margin-right: 8rem;
    padding: 0;
}

.clem-navbar__brand img {
    display: block;
    width: 13.125rem;
    height: auto;
}

.clem-navbar__toggler {
    width: 2.875rem;
    height: 2.875rem;
    margin-left: auto;
    padding: 0.5625rem;
    border: 0.0625rem solid rgba(88, 180, 245, 0.3);
    border-radius: 0.6875rem;
    background: rgba(8, 31, 66, 0.76);
}

.clem-navbar__toggler:focus {
    box-shadow: none;
}

.clem-navbar__toggler:focus-visible {
    outline: 0.1875rem solid #45d6e7;
    outline-offset: 0.125rem;
}

.clem-navbar__collapse {
    min-width: 0;
    align-items: center;
}

.clem-navbar__links {
    align-items: center;
    gap: 2.3rem;
}

.clem-navbar .nav-link {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0;
    color: #f1f5fb;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
}

.clem-navbar .nav-link:hover,
.clem-navbar .nav-link:focus-visible,
.clem-navbar .nav-link.show {
    color: #62e0d3;
}

.clem-navbar__dropdown-toggle::after {
    display: none;
}

.clem-navbar__dropdown-toggle svg,
.clem-navbar__demo svg {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.clem-navbar__dropdown {
    min-width: 14rem;
    margin-top: 0.35rem;
    padding: 0.45rem;
    border: 0.0625rem solid rgba(89, 170, 238, 0.24);
    border-radius: 0.75rem;
    background: #06162f;
    box-shadow: 0 1.5rem 3.5rem rgba(0, 4, 18, 0.46);
}

.clem-navbar__dropdown .dropdown-item {
    padding: 0.625rem 0.75rem;
    border-radius: 0.5rem;
    color: #dce8f7;
    font-size: 0.875rem;
    font-weight: 600;
}

.clem-navbar__dropdown .dropdown-item:hover,
.clem-navbar__dropdown .dropdown-item:focus {
    background: rgba(24, 126, 220, 0.2);
    color: #ffffff;
}

.clem-navbar__actions {
    display: flex;
    align-items: center;
    gap: 1.65rem;
    margin-left: auto;
}

.clem-navbar__login-link {
    display: inline-flex;
    min-height: 2.875rem;
    align-items: center;
    color: #f5f8fd;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.clem-navbar__login-link:hover,
.clem-navbar__login-link:focus-visible {
    color: #63dfd3;
}

.clem-navbar__demo {
    display: inline-flex;
    width: 10.5625rem;
    min-height: 2.875rem;
    align-items: center;
    justify-content: center;
    gap: 1.05rem;
    border: 0.0625rem solid rgba(79, 214, 225, 0.42);
    border-radius: 0.6875rem;
    background: linear-gradient(108deg, #116be9 0%, #159ee0 56%, #1dc99a 100%);
    box-shadow: 0 0.75rem 2rem rgba(6, 111, 226, 0.24);
    color: #ffffff;
    font-size: 0.9375rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: filter 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.clem-navbar__demo:hover {
    color: #ffffff;
    filter: brightness(1.08);
    transform: translateY(-0.0625rem);
    box-shadow: 0 0.875rem 2.25rem rgba(6, 139, 226, 0.32);
}

/* HERO */
.clem-hero {
    position: relative;
    isolation: isolate;
    min-height: 44.625rem;
    overflow: hidden;
    background:
        radial-gradient(circle at 60% 55%, rgba(16, 100, 217, 0.2), transparent 34%),
        radial-gradient(circle at 93% 53%, rgba(0, 185, 225, 0.12), transparent 27%),
        linear-gradient(112deg, #02091a 0%, #04142f 51%, #031028 100%);
    color: #ffffff;
}

.clem-hero::before {
    position: absolute;
    z-index: -2;
    width: 55rem;
    height: 55rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(8, 111, 246, 0.19), transparent 68%);
    content: "";
    inset: 4rem auto auto 28rem;
    filter: blur(0.25rem);
}

.clem-hero::after {
    position: absolute;
    z-index: -1;
    background:
        linear-gradient(to bottom, rgba(3, 12, 31, 0) 0%, rgba(3, 12, 31, 0.05) 68%, rgba(6, 34, 76, 0.58) 100%);
    content: "";
    inset: 0;
}

.clem-hero__texture {
    position: absolute;
    z-index: -1;
    background-image: radial-gradient(circle, rgba(70, 177, 255, 0.28) 0 0.0625rem, transparent 0.0875rem);
    background-size: 3.6rem 3.6rem;
    content: "";
    inset: 0 0 18% 53%;
    mask-image: radial-gradient(ellipse at 72% 44%, #000 0%, transparent 70%);
    opacity: 0.7;
}

.clem-hero__shell {
    position: relative;
    z-index: 2;
    min-height: 44.625rem;
}

.clem-hero__layout {
    display: grid;
    min-height: 44.625rem;
    grid-template-columns: 40rem minmax(0, 1fr);
    gap: 1rem;
}

.clem-hero__content {
    z-index: 2;
    width: 100%;
    max-width: 40rem;
    padding-top: 3.5rem;
}

.clem-hero__eyebrow {
    display: inline-flex;
    min-height: 2.0625rem;
    align-items: center;
    gap: 0.55rem;
    margin: 0;
    padding: 0.375rem 0.75rem;
    border: 0.0625rem solid rgba(41, 207, 182, 0.28);
    border-radius: 999px;
    background: rgba(4, 22, 48, 0.76);
    box-shadow: inset 0 0.0625rem rgba(130, 220, 255, 0.05);
    color: #45d9bd;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.025em;
    line-height: 1;
    white-space: nowrap;
}

.clem-hero__eyebrow svg,
.clem-hero__capabilities svg,
.clem-hero__actions svg,
.clem-hero__trust svg,
.clem-feature-card svg {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.65;
}

.clem-hero__eyebrow svg {
    color: #38aef6;
}

.clem-hero h1 {
    max-width: 39.5rem;
    margin: 1.0625rem 0 0;
    color: #f7f9fd;
    font-size: clamp(3.75rem, 3.83vw, 4rem);
    font-weight: 750;
    line-height: 1.01;
    letter-spacing: -0.047em;
}

.clem-hero h1 span {
    display: block;
    white-space: nowrap;
}

.clem-hero__intro {
    max-width: 35.5rem;
    margin: 1.375rem 0 0;
    color: #aabbd4;
    font-size: 1.21875rem;
    line-height: 1.55;
    letter-spacing: -0.012em;
}

.clem-hero__capabilities {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.8125rem;
    margin: 1.25rem 0 0;
    padding: 0;
    list-style: none;
}

.clem-hero__capabilities li {
    display: inline-flex;
    height: 3.25rem;
    flex: 0 0 auto;
    align-items: center;
    gap: 0.625rem;
    justify-content: center;
    padding: 0.5rem 0.75rem;
    border: 0.0625rem solid rgba(62, 143, 224, 0.48);
    border-radius: 0.5rem;
    background: rgba(3, 19, 45, 0.74);
    box-shadow: inset 0 0.0625rem rgba(127, 205, 255, 0.04);
    color: #f0f5fc;
    font-size: 0.875rem;
    font-weight: 700;
    white-space: nowrap;
}

.clem-hero__capabilities li:nth-child(1) {
    width: 13.125rem;
}

.clem-hero__capabilities li:nth-child(2) {
    width: 6.75rem;
}

.clem-hero__capabilities li:nth-child(3) {
    width: 5.8125rem;
}

.clem-hero__capabilities li:nth-child(4) {
    width: 8rem;
}

.clem-hero__capabilities svg {
    flex: 0 0 auto;
    color: #42aaff;
    filter: drop-shadow(0 0 0.35rem rgba(31, 137, 255, 0.34));
}

.clem-hero__actions {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.875rem;
    margin-top: 1.75rem;
}

.clem-hero__actions .btn {
    display: inline-flex;
    height: 3.625rem;
    min-height: 3.625rem;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 0.625rem;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.1;
    white-space: nowrap;
}

.clem-hero__actions .btn-clem-primary {
    width: 19rem;
    border-color: rgba(88, 221, 222, 0.44);
    background: linear-gradient(108deg, #0f6cf0 0%, #16a7dc 58%, #21c897 100%);
    box-shadow: 0 0.875rem 2.25rem rgba(4, 100, 219, 0.28);
    color: #ffffff;
}

.clem-hero__actions .btn-clem-secondary {
    width: 15.5rem;
    border-color: rgba(69, 145, 224, 0.52);
    background: rgba(3, 20, 48, 0.7);
    color: #dbe8f8;
}

.clem-hero__actions .btn:hover {
    color: #ffffff;
    transform: translateY(-0.125rem);
}

.clem-hero__actions .btn-clem-primary:hover {
    border-color: rgba(111, 237, 225, 0.72);
    background: linear-gradient(108deg, #1979f6 0%, #1ab1e3 58%, #25d0a0 100%);
}

.clem-hero__actions .btn-clem-secondary:hover {
    border-color: rgba(76, 203, 220, 0.65);
    background: rgba(11, 45, 86, 0.78);
}

.clem-hero__actions .btn:focus-visible {
    box-shadow: 0 0 0 0.25rem rgba(84, 222, 221, 0.48);
}

.clem-hero__play {
    display: inline-grid;
    width: 1.25rem;
    height: 1.25rem;
    flex: 0 0 auto;
    place-items: center;
    border: 0.0625rem solid #69aef7;
    border-radius: 50%;
    color: #69aef7;
}

.clem-hero__play svg {
    width: 0.75rem;
    height: 0.75rem;
    fill: currentColor;
    stroke: none;
}

.clem-hero__trust {
    display: grid;
    width: 38.25rem;
    grid-template-columns: 1.05fr 1.22fr 0.98fr;
    margin: 1.9375rem 0 0;
    padding: 0;
    list-style: none;
}

.clem-hero__trust li {
    display: flex;
    min-width: 0;
    height: 3rem;
    align-items: center;
    gap: 0.625rem;
    padding-inline: 0 0.9rem;
}

.clem-hero__trust li + li {
    padding-left: 1.2rem;
    border-left: 0.0625rem solid rgba(90, 145, 208, 0.27);
}

.clem-hero__trust svg {
    flex: 0 0 auto;
    color: #3d9df7;
}

.clem-hero__trust span {
    display: grid;
    min-width: 0;
    gap: 0.0625rem;
}

.clem-hero__trust strong,
.clem-hero__trust small {
    overflow: hidden;
    text-overflow: clip;
    white-space: nowrap;
}

.clem-hero__trust strong {
    color: #dbe6f5;
    font-size: 0.75rem;
    font-weight: 650;
    line-height: 1.25;
}

.clem-hero__trust small {
    color: #8295b0;
    font-size: 0.625rem;
    line-height: 1.35;
}

/* HERO PRODUCT SLIDER */
.clem-hero__showcase-column {
    position: relative;
    z-index: 1;
    min-width: 0;
    padding-top: 1.6875rem;
}

.hero-showcase {
    position: relative;
    width: min(100%, 53.5625rem);
    aspect-ratio: 857 / 645;
    margin-left: 0;
    perspective: 100rem;
}

.hero-showcase::before {
    position: absolute;
    z-index: -1;
    border-radius: 45%;
    background: radial-gradient(ellipse, rgba(8, 129, 255, 0.3), rgba(10, 198, 185, 0.1) 47%, transparent 72%);
    content: "";
    filter: blur(1rem);
    inset: 8% -4% -7% -3%;
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.hero-slider__viewport {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: 0.0625rem solid rgba(93, 173, 239, 0.38);
    border-radius: 1.35rem;
    background: #020a1b;
    box-shadow:
        0 2rem 4.75rem rgba(0, 3, 15, 0.56),
        0 0 3.25rem rgba(14, 117, 229, 0.17),
        inset 0 0.0625rem rgba(173, 226, 255, 0.12);
    /* Keep the LCP image on an untransformed plane. The premium depth is provided by border/glow/shadow. */
    transform: none;
}

.hero-slider__poster {
    position: absolute;
    z-index: 1;
    display: grid;
    place-items: center;
    inset: 0;
}

/* Desktop LCP: keep the proven PNG candidate in normal flow until progressive enhancement. */
.hero-slider__poster--lcp-stable {
    position: relative;
    width: 100%;
    height: 100%;
    inset: auto;
}

.hero-slider__track {
    position: absolute;
    z-index: 2;
    display: grid;
    inset: 0;
}

.hero-slider__slide {
    display: grid;
    visibility: hidden;
    width: 100%;
    height: 100%;
    place-items: center;
    grid-area: 1 / 1;
    background: #020a1b;
    opacity: 0;
}

.hero-slider__slide.is-active {
    visibility: visible;
    opacity: 1;
}

.hero-slider__poster picture,
.hero-slider__slide picture {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1672 / 941;
}

.hero-slider__poster img,
.hero-slider__slide img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    aspect-ratio: 1672 / 941;
    object-fit: contain;
    object-position: center;
    background: #020a1b;
}

.hero-slider.is-enhanced .hero-slider__slide {
    transition: opacity 320ms ease, visibility 0s linear 320ms;
}

.hero-slider.is-enhanced .hero-slider__slide.is-active {
    transition-delay: 0s;
}

.hero-slider__controls {
    position: absolute;
    z-index: 3;
    bottom: 0.75rem;
    left: 50%;
    display: none;
    height: 2.25rem;
    align-items: center;
    gap: 0.0625rem;
    padding: 0.125rem 0.25rem;
    border: 0.0625rem solid rgba(91, 180, 246, 0.22);
    border-radius: 999px;
    background: rgba(1, 11, 29, 0.82);
    box-shadow: 0 0.625rem 1.75rem rgba(0, 4, 18, 0.42);
    transform: translateX(-50%);
}

.hero-slider.is-enhanced .hero-slider__controls {
    display: flex;
}

.hero-slider__control {
    display: inline-grid;
    width: 1.75rem;
    height: 1.75rem;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #c7d9ee;
    font-size: 1.125rem;
    line-height: 1;
    transition: background-color 150ms ease, color 150ms ease;
}

.hero-slider__control:hover {
    background: rgba(24, 111, 197, 0.25);
    color: #ffffff;
}

.hero-slider__control:focus-visible,
.hero-slider__dot:focus-visible {
    outline: 0.125rem solid #58e0d4;
    outline-offset: 0.0625rem;
}

.hero-slider__toggle {
    font-size: 0.625rem;
}

.hero-slider__dots {
    display: flex;
    align-items: center;
    gap: 0;
}

.hero-slider__dot {
    display: inline-grid;
    width: 1rem;
    height: 1.75rem;
    padding: 0;
    place-items: center;
    border: 0;
    background: transparent;
}

.hero-slider__dot::before {
    width: 0.75rem;
    height: 0.3125rem;
    border-radius: 999px;
    background: #63748d;
    content: "";
    transform: scaleX(0.4167);
    transform-origin: center;
    transition: transform 180ms ease, background-color 180ms ease;
}

.hero-slider__dot.is-active::before {
    width: 0.75rem;
    background: linear-gradient(90deg, #1688ff, #31d7bd);
    box-shadow: 0 0 0.5rem rgba(49, 215, 189, 0.48);
    transform: scaleX(1);
}

/* HERO BACKGROUND LINES */
.clem-hero__light-lines {
    position: absolute;
    z-index: 0;
    right: -8rem;
    bottom: -24rem;
    width: 68rem;
    height: 27rem;
    pointer-events: none;
    transform: rotate(-8deg);
}

.clem-hero__light-lines span {
    position: absolute;
    border: 0.0625rem solid transparent;
    border-top-color: rgba(23, 129, 255, 0.58);
    border-radius: 50%;
    inset: 0;
    filter: drop-shadow(0 -0.1rem 0.35rem rgba(15, 116, 255, 0.35));
}

.clem-hero__light-lines span:nth-child(2) {
    border-top-color: rgba(20, 192, 226, 0.4);
    inset: 2.25rem 4rem;
}

.clem-hero__light-lines span:nth-child(3) {
    border-top-color: rgba(81, 58, 222, 0.34);
    inset: 4.5rem 8rem;
}

/* FEATURES LEAD-IN */
.clem-features-lead {
    min-height: 22rem;
    overflow: hidden;
    padding: 0.625rem 4rem 0;
    background: #02091a;
    color: #ffffff;
}

.clem-features-lead__panel {
    display: grid;
    width: 100%;
    max-width: 96.5rem;
    min-height: 21.5rem;
    margin-inline: auto;
    grid-template-columns: 36rem minmax(0, 1fr);
    gap: 2rem;
    padding: 2.5rem 2.25rem;
    border: 0.0625rem solid rgba(98, 159, 220, 0.28);
    border-radius: 1.5rem 1.5rem 0 0;
    background: linear-gradient(135deg, rgba(5, 19, 43, 0.98), rgba(5, 24, 53, 0.96));
    box-shadow: inset 0 0.0625rem rgba(145, 210, 255, 0.05);
}

.clem-features-lead__heading {
    padding: 0 0.125rem;
}

.clem-features-lead__eyebrow {
    display: inline-flex;
    min-height: 2rem;
    align-items: center;
    margin: 0;
    padding: 0.375rem 0.75rem;
    border: 0.0625rem solid rgba(48, 199, 179, 0.25);
    border-radius: 999px;
    background: rgba(5, 27, 57, 0.68);
    color: #48cdb8;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.clem-features-lead h2 {
    max-width: 34rem;
    margin: 1rem 0 0;
    color: #f3f7fd;
    font-size: 1.875rem;
    font-weight: 730;
    line-height: 1.16;
    letter-spacing: -0.035em;
}

.clem-features-lead__cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
}

.clem-feature-card {
    min-height: 8.5rem;
    padding: 1rem 0.9rem;
    border: 0.0625rem solid rgba(74, 139, 207, 0.2);
    border-radius: 0.875rem;
    background: linear-gradient(145deg, rgba(9, 29, 63, 0.8), rgba(4, 19, 44, 0.82));
    box-shadow: inset 0 0.0625rem rgba(136, 213, 255, 0.04);
}

.clem-feature-card svg {
    color: #31c9c8;
    filter: drop-shadow(0 0 0.45rem rgba(31, 156, 244, 0.35));
}

.clem-feature-card h3 {
    margin: 0.625rem 0 0;
    color: #f0f5fc;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.15;
}

/* HERO RESPONSIVE */
@media (min-width: 1200px) and (max-width: 1599.98px) {
    .clem-shell {
        padding-inline: 4.43vw;
    }

    .site-header {
        height: 5.26vw;
    }

    .clem-navbar,
    .clem-navbar__shell {
        min-height: 5.26vw;
    }

    .clem-navbar__brand {
        margin-right: 7.66vw;
    }

    .clem-navbar__brand img {
        width: 12.56vw;
    }

    .clem-navbar__links {
        gap: 2.2vw;
    }

    .clem-navbar .nav-link,
    .clem-navbar__login-link,
    .clem-navbar__demo {
        font-size: 0.9vw;
    }

    .clem-navbar__actions {
        gap: 1.58vw;
    }

    .clem-navbar__demo {
        width: 10.11vw;
        min-height: 2.75vw;
    }

    .clem-hero,
    .clem-hero__shell,
    .clem-hero__layout {
        min-height: 42.7vw;
    }

    .clem-hero__layout {
        grid-template-columns: 38.5vw minmax(0, 1fr);
        gap: 0.96vw;
    }

    .clem-hero__content {
        max-width: none;
        padding-top: 3.35vw;
    }

    .clem-hero__eyebrow {
        min-height: 1.97vw;
        gap: 0.53vw;
        padding: 0.36vw 0.72vw;
        font-size: 0.66vw;
    }

    .clem-hero__eyebrow svg {
        width: 0.96vw;
        height: 0.96vw;
    }

    .clem-hero h1 {
        max-width: 100%;
        margin-top: 1.02vw;
        font-size: 3.83vw;
    }

    .clem-hero__intro {
        max-width: 34vw;
        margin-top: 1.32vw;
        font-size: 1.17vw;
    }

    .clem-hero__capabilities {
        gap: 0.78vw;
        margin-top: 1.2vw;
    }

    .clem-hero__capabilities li {
        width: auto !important;
        height: 3.11vw;
        padding-inline: 0.72vw;
        font-size: 0.84vw;
    }

    .clem-hero__capabilities svg {
        width: 1.32vw;
        height: 1.32vw;
    }

    .clem-hero__actions {
        gap: 0.84vw;
        margin-top: 1.68vw;
    }

    .clem-hero__actions .btn {
        height: 3.47vw;
        min-height: 3.47vw;
        font-size: 0.9vw;
    }

    .clem-hero__actions .btn-clem-primary {
        width: 18.18vw;
    }

    .clem-hero__actions .btn-clem-secondary {
        width: 14.83vw;
    }

    .clem-hero__trust {
        width: 36.6vw;
        margin-top: 1.85vw;
    }

    .clem-hero__trust li {
        height: 2.87vw;
        gap: 0.6vw;
        padding-right: 0.86vw;
    }

    .clem-hero__trust li + li {
        padding-left: 1.15vw;
    }

    .clem-hero__trust svg {
        width: 1.67vw;
        height: 1.67vw;
    }

    .clem-hero__trust strong {
        font-size: 0.72vw;
    }

    .clem-hero__trust small {
        font-size: 0.6vw;
    }

    .clem-hero__showcase-column {
        padding-top: 1.62vw;
    }

    .hero-showcase {
        width: min(100%, 51.26vw);
    }
}

@media (max-width: 1199.98px) {
    .clem-navbar__brand {
        margin-right: 1.75rem;
    }

    .clem-navbar__brand img {
        width: 11rem;
    }

    .clem-navbar__links {
        gap: 0.6rem;
    }

    .clem-navbar .nav-link,
    .clem-navbar__login-link,
    .clem-navbar__demo {
        font-size: 0.8125rem;
    }

    .clem-navbar__actions {
        gap: 0.625rem;
    }

    .clem-navbar__demo {
        width: 8.75rem;
        gap: 0.55rem;
    }

    .clem-hero {
        min-height: 42.5rem;
    }

    .clem-hero__shell,
    .clem-hero__layout {
        min-height: 42.5rem;
    }

    .clem-hero__layout {
        grid-template-columns: minmax(0, 45%) minmax(0, 1fr);
    }

    .clem-hero h1 {
        font-size: clamp(2.75rem, 4.15vw, 3.25rem);
    }

    .clem-hero__intro {
        max-width: 30rem;
        font-size: 1.05rem;
    }

    .clem-hero__capabilities {
        flex-wrap: wrap;
    }

    .clem-hero__actions {
        flex-wrap: wrap;
    }

    .clem-hero__actions .btn {
        width: auto;
        padding-inline: 1.125rem;
        font-size: 0.8125rem;
    }

    .clem-hero__trust {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-top: 1.25rem;
    }

    .clem-hero__trust li {
        height: auto;
    }

    .clem-hero__trust li + li {
        padding-left: 0;
        border-left: 0;
    }

    .clem-features-lead__panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991.98px) {
    .site-header,
    .clem-navbar,
    .clem-navbar__shell {
        height: auto;
        min-height: 4.875rem;
    }

    .clem-navbar__brand img {
        width: 11.25rem;
    }

    .clem-navbar__collapse {
        position: absolute;
        top: calc(100% - 0.0625rem);
        right: 1.5rem;
        left: 1.5rem;
        padding: 1rem;
        border: 0.0625rem solid rgba(69, 158, 233, 0.24);
        border-radius: 0 0 1rem 1rem;
        background: #05162f;
        box-shadow: 0 1.5rem 3rem rgba(0, 4, 16, 0.48);
    }

    .clem-navbar__links {
        align-items: stretch;
        gap: 0;
    }

    .clem-navbar .nav-link {
        min-height: 2.75rem;
        justify-content: space-between;
        padding: 0.6875rem 0.5rem;
        font-size: 0.9rem;
    }

    .clem-navbar__dropdown {
        position: static !important;
        transform: none !important;
        margin: 0 0 0.5rem;
        border: 0;
        box-shadow: none;
    }

    .clem-navbar__actions {
        align-items: stretch;
        margin: 0.5rem 0 0;
        padding-top: 0.875rem;
        border-top: 0.0625rem solid rgba(87, 164, 228, 0.18);
    }

    .clem-navbar__login-link,
    .clem-navbar__demo {
        min-height: 2.75rem;
        justify-content: center;
        font-size: 0.875rem;
    }

    .clem-navbar__demo {
        width: auto;
        flex: 1;
    }

    .clem-hero,
    .clem-hero__shell,
    .clem-hero__layout {
        min-height: auto;
    }

    .clem-hero__layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-block: 3.75rem 4.5rem;
    }

    .clem-hero__content {
        max-width: 44rem;
        margin-inline: auto;
        padding-top: 0;
        text-align: center;
    }

    .clem-hero h1 {
        max-width: none;
        font-size: clamp(3rem, 6.5vw, 3.75rem);
    }

    .clem-hero__intro {
        max-width: 38rem;
        margin-inline: auto;
    }

    .clem-hero__capabilities,
    .clem-hero__actions {
        justify-content: center;
    }

    .clem-hero__trust {
        width: min(100%, 38rem);
        margin-inline: auto;
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
    }

    .clem-hero__trust li + li {
        padding-left: 1rem;
        border-left: 0.0625rem solid rgba(90, 145, 208, 0.27);
    }

    .clem-hero__showcase-column {
        padding-top: 0;
    }

    .hero-showcase {
        width: min(100%, 48rem);
        aspect-ratio: 16 / 9;
        margin-inline: auto;
        perspective: none;
    }

    .hero-slider__viewport {
        transform: none;
    }

    .clem-features-lead {
        padding-inline: 2rem;
    }

    .clem-features-lead__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .clem-shell {
        padding-inline: 1.25rem;
    }

    .clem-navbar__brand img {
        width: 10.5rem;
    }

    .clem-navbar__collapse {
        right: 1rem;
        left: 1rem;
    }

    .clem-navbar__actions {
        flex-direction: column;
    }

    .clem-hero__layout {
        gap: 2.25rem;
        padding-block: 3rem 3.75rem;
    }

    .clem-hero__eyebrow {
        max-width: 100%;
        padding-inline: 0.625rem;
        font-size: 0.5625rem;
        white-space: normal;
    }

    .clem-hero h1 {
        font-size: clamp(2.25rem, 10.7vw, 2.9rem);
        letter-spacing: -0.043em;
    }

    .clem-hero h1 span {
        white-space: normal;
    }

    .clem-hero__intro {
        font-size: 1rem;
        line-height: 1.6;
    }

    .clem-hero__capabilities {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .clem-hero__capabilities li {
        width: auto !important;
        min-width: 0;
        height: 3rem;
        padding-inline: 0.45rem;
        font-size: 0.7rem;
        white-space: normal;
    }

    .clem-hero__capabilities svg {
        width: 1.125rem;
        height: 1.125rem;
    }

    .clem-hero__actions {
        flex-direction: column;
    }

    .clem-hero__actions .btn {
        width: 100%;
        min-height: 3.375rem;
        height: auto;
    }

    .clem-hero__trust {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-top: 1.5rem;
        text-align: left;
    }

    .clem-hero__trust li {
        justify-content: center;
    }

    .clem-hero__trust li + li {
        padding-left: 0;
        border-left: 0;
    }

    .hero-slider__viewport {
        border-radius: 0.875rem;
    }

    .hero-slider__controls {
        bottom: 0.375rem;
        height: 2.25rem;
    }

    .hero-slider__control {
        width: 1.75rem;
        height: 1.75rem;
    }

    .hero-slider__dot {
        width: 1.75rem;
        height: 1.75rem;
    }

    .clem-features-lead {
        padding: 0.5rem 1rem 0;
    }

    .clem-features-lead__panel {
        padding: 1.75rem 1.25rem;
        border-radius: 1.125rem 1.125rem 0 0;
    }

    .clem-features-lead__cards {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .skip-link,
    .btn-clem-primary,
    .btn-clem-secondary,
    .clem-navbar__demo,
    .hero-slider__slide,
    .hero-slider__control,
    .hero-slider__dot::before {
        transition: none;
    }
}
