:root {
    --bg: #f2fbff;
    --surface: #ffffff;
    --surface-blue: #e9f8ff;
    --surface-cyan: #dff7fb;
    --ink: #08213f;
    --ink-soft: #45637f;
    --muted: #6f879b;
    --blue: #117ee8;
    --blue-dark: #0759b5;
    --cyan: #23b6d5;
    --mint: #40c991;
    --line: rgba(17, 126, 232, 0.14);
    --line-strong: rgba(8, 33, 63, 0.12);
    --shadow-soft: 0 18px 44px rgba(8, 33, 63, 0.08);
    --shadow-card: 0 12px 30px rgba(8, 33, 63, 0.07);
    --radius-card: 8px;
    --radius-ui: 8px;
    --font: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    margin: 0;
    min-width: 320px;
    background:
        linear-gradient(180deg, #effaff 0%, #ffffff 42%, #eef9ff 100%);
    color: var(--ink);
    font-family: var(--font);
    line-height: 1.6;
    letter-spacing: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(17, 126, 232, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 126, 232, 0.06) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, #000 0%, transparent 72%);
}

body::after {
    content: "";
    position: fixed;
    inset: auto 0 0;
    height: 42vh;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(35, 182, 213, 0.08), rgba(64, 201, 145, 0.08));
    clip-path: polygon(0 32%, 100% 0, 100% 100%, 0 100%);
}

a {
    color: inherit;
}

button,
input {
    font: inherit;
}

img,
svg {
    display: block;
}

.svg-sprite {
    display: none;
}

.container {
    width: min(100% - 48px, 1180px);
    margin-inline: auto;
}

.site-header .container {
    width: min(100% - 48px, 1500px);
}

.icon {
    width: 1.15rem;
    height: 1.15rem;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    max-width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 0.72rem 1rem;
    border: 1px solid transparent;
    border-radius: var(--radius-ui);
    color: var(--ink);
    cursor: pointer;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    text-align: center;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
    white-space: nowrap;
}

.button span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.button:hover {
    transform: translateY(-2px);
}

.button:focus-visible,
.menu-toggle:focus-visible,
input:focus-visible {
    outline: 3px solid rgba(35, 182, 213, 0.35);
    outline-offset: 3px;
}

.button-primary {
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(17, 126, 232, 0.26);
}

.button-primary:hover {
    box-shadow: 0 18px 38px rgba(17, 126, 232, 0.34);
}

.button-ghost {
    background: rgba(255, 255, 255, 0.72);
    border-color: var(--line);
    color: var(--blue-dark);
}

.button-light {
    background: #ffffff;
    border-color: rgba(255, 255, 255, 0.75);
    color: var(--blue-dark);
    box-shadow: 0 10px 28px rgba(8, 33, 63, 0.08);
}

.button-large {
    min-height: 52px;
    padding: 0.9rem 1.2rem;
}

.site-header {
    position: sticky;
    top: 12px;
    z-index: 20;
    border-bottom: 1px solid rgba(17, 126, 232, 0.12);
    background: rgba(242, 251, 255, 0.88);
    backdrop-filter: blur(18px);
}

.site-header::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -12px;
    height: 12px;
    background: rgba(242, 251, 255, 0.88);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
    gap: 1.2rem;
    min-width: 0;
}

.brand {
    display: grid;
    gap: 0.42rem;
    flex: 1 1 auto;
    min-width: 0;
    text-decoration: none;
}

.brand-name {
    display: inline-flex;
    align-items: baseline;
    gap: 0.02em;
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
}

.brand-name-main {
    color: var(--ink);
}

.brand-name-accent {
    color: var(--blue);
    text-shadow: 0 0 18px rgba(17, 126, 232, 0.22);
}

.brand-powered {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.48rem;
    width: fit-content;
    max-width: 100%;
    min-height: 32px;
    padding: 0.34rem 0.72rem;
    border: 1px solid rgba(17, 126, 232, 0.16);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(225, 246, 255, 0.96));
    box-shadow: 0 10px 22px rgba(17, 126, 232, 0.12);
    color: var(--blue-dark);
    font-size: 0.8rem;
    font-weight: 900;
    line-height: 1.15;
}

.brand-powered::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    box-shadow: 0 0 0 5px rgba(35, 182, 213, 0.12);
}

.brand-powered-label {
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.1;
}

.brand-powered strong {
    color: var(--blue-dark);
    font-weight: 900;
    min-width: 0;
    overflow-wrap: anywhere;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.7rem, 1.2vw, 1.35rem);
    min-width: 0;
}

.main-nav a {
    color: var(--ink-soft);
    font-size: clamp(0.84rem, 0.78rem + 0.16vw, 0.92rem);
    font-weight: 800;
    line-height: 1.15;
    text-decoration: none;
    transition: color 160ms ease;
    white-space: nowrap;
}

.main-nav a:hover {
    color: var(--blue);
}

.header-actions {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 0.6rem;
}

.language-switcher {
    position: relative;
    flex: 0 0 auto;
    border: 1px solid rgba(17, 126, 232, 0.14);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(232, 248, 255, 0.88));
    box-shadow: 0 12px 26px rgba(8, 33, 63, 0.08);
}

.language-switcher[open] {
    border-color: rgba(17, 126, 232, 0.22);
    box-shadow: 0 16px 32px rgba(8, 33, 63, 0.12);
}

.language-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 42px;
    padding: 0.32rem 0.42rem 0.32rem 0.78rem;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.language-trigger::-webkit-details-marker {
    display: none;
}

.language-trigger::after {
    content: "";
    width: 0.48rem;
    height: 0.48rem;
    margin-left: 0.1rem;
    border-right: 2px solid rgba(8, 33, 63, 0.45);
    border-bottom: 2px solid rgba(8, 33, 63, 0.45);
    transform: rotate(45deg) translateY(-1px);
    transition: transform 180ms ease;
}

.language-switcher[open] .language-trigger::after {
    transform: rotate(-135deg) translateY(-1px);
}

.language-trigger-label {
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.language-trigger-current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 32px;
    padding: 0 0.65rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 900;
    box-shadow: 0 10px 20px rgba(17, 126, 232, 0.22);
}

.language-menu {
    position: absolute;
    top: calc(100% + 0.7rem);
    right: 0;
    display: grid;
    gap: 0.35rem;
    min-width: 188px;
    padding: 0.45rem;
    border: 1px solid rgba(17, 126, 232, 0.14);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 22px 44px rgba(8, 33, 63, 0.14);
    backdrop-filter: blur(18px);
    z-index: 30;
}

.language-link {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 0.7rem;
    min-height: 44px;
    padding: 0.45rem 0.55rem;
    border-radius: 10px;
    color: var(--ink-soft);
    text-decoration: none;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.language-link-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 32px;
    padding: 0 0.55rem;
    border-radius: 999px;
    background: rgba(17, 126, 232, 0.08);
    color: var(--blue-dark);
    font-size: 0.74rem;
    font-weight: 900;
}

.language-link-name {
    font-size: 0.88rem;
    font-weight: 800;
}

.language-link:hover {
    background: rgba(17, 126, 232, 0.07);
    color: var(--blue);
    transform: translateY(-1px);
}

.language-link.is-active {
    background: linear-gradient(135deg, rgba(17, 126, 232, 0.12), rgba(35, 182, 213, 0.12));
    color: var(--ink);
}

.language-link.is-active .language-link-code {
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    color: #ffffff;
    box-shadow: 0 10px 18px rgba(17, 126, 232, 0.2);
}

.trial-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    min-height: 38px;
    padding: 0.45rem 0.72rem;
    border: 1px solid rgba(17, 126, 232, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--blue-dark);
    font-size: 0.84rem;
    font-weight: 900;
    text-decoration: none;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.trial-pill:hover {
    transform: translateY(-1px);
    border-color: rgba(17, 126, 232, 0.24);
    background: rgba(255, 255, 255, 0.96);
}

.trial-pill .icon {
    color: var(--cyan);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius-ui);
    background: #ffffff;
    cursor: pointer;
    padding: 0;
    place-items: center;
}

.menu-toggle span {
    display: block;
    width: 19px;
    height: 2px;
    margin: 3px auto;
    border-radius: 2px;
    background: var(--ink);
    transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 128px 0 76px;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(120deg, rgba(17, 126, 232, 0.1), transparent 34%),
        linear-gradient(300deg, rgba(64, 201, 145, 0.12), transparent 38%);
    clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
}

.hero-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -78px;
    height: 170px;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(52% 130% at 18% 0%, rgba(255, 255, 255, 0.96), transparent 68%),
        radial-gradient(56% 120% at 82% 0%, rgba(255, 255, 255, 0.94), transparent 70%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 252, 255, 0.94));
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
    align-items: center;
    gap: 4.2rem;
}

.hero-copy,
.hero-visual,
.laptop-shell {
    min-width: 0;
    max-width: 100%;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    max-width: 100%;
    margin-bottom: 1rem;
    border: 1px solid rgba(17, 126, 232, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--blue-dark);
    font-size: 0.82rem;
    font-weight: 900;
    padding: 0.45rem 0.78rem;
    overflow-wrap: anywhere;
}

.eyebrow span,
.section-kicker span {
    min-width: 0;
}

.section-kicker {
    background: var(--surface-blue);
}

.section-kicker.inverted {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
    color: #bdeeff;
}

.hero-copy h1 {
    max-width: 680px;
    margin: 0;
    color: var(--ink);
    font-size: 3.9rem;
    font-weight: 900;
    line-height: 1.04;
    overflow-wrap: anywhere;
}

.hero-lead {
    max-width: 610px;
    margin: 1.35rem 0 0;
    color: var(--ink-soft);
    font-size: 1.18rem;
    overflow-wrap: anywhere;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
    min-width: 0;
}

.hero-offer-note {
    max-width: 580px;
    margin: 1rem 0 0;
    color: var(--blue-dark);
    font-size: 0.98rem;
    font-weight: 800;
}

.hero-assurance {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.6rem;
}

.hero-assurance span {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    min-width: 0;
    min-height: 38px;
    padding: 0.45rem 0.7rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    color: var(--ink-soft);
    font-size: 0.88rem;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.hero-assurance .icon {
    color: var(--mint);
}

.hero-visual {
    position: relative;
    min-height: 480px;
    display: grid;
    place-items: center;
}

.laptop-shell {
    position: relative;
    width: min(100%, 640px);
    animation: floatLaptop 7s ease-in-out infinite;
}

.laptop-lid {
    position: relative;
    padding: 14px;
    border-radius: 18px 18px 10px 10px;
    background: linear-gradient(145deg, #102845, #07182c);
    box-shadow: 0 30px 70px rgba(8, 33, 63, 0.26);
}

.camera-dot {
    position: absolute;
    top: 6px;
    left: 50%;
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: #80e8ff;
    transform: translateX(-50%);
}

.laptop-screen {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: #f7fcff;
}

.laptop-screen::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(112deg, rgba(255, 255, 255, 0.22), transparent 33%, rgba(255, 255, 255, 0.06) 72%);
    mix-blend-mode: screen;
}

.screen-image {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 260ms ease;
}

.screen-image.is-loaded {
    opacity: 1;
}

.laptop-base {
    width: 92%;
    height: 22px;
    margin: 0 auto;
    border-radius: 0 0 24px 24px;
    background: linear-gradient(180deg, #d4e2ef, #aebed0);
    box-shadow: 0 22px 40px rgba(8, 33, 63, 0.18);
}

.laptop-base::before {
    content: "";
    display: block;
    width: 110px;
    height: 5px;
    margin: 0 auto;
    border-radius: 0 0 8px 8px;
    background: #879db4;
}

.screen-placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 76px 1fr;
    background: linear-gradient(135deg, #f9fdff, #e8f8ff);
}

.mock-sidebar {
    display: grid;
    align-content: start;
    gap: 13px;
    padding: 20px 16px;
    border-right: 1px solid rgba(17, 126, 232, 0.12);
    background: #ecf9ff;
}

.mock-sidebar span {
    height: 10px;
    border-radius: 999px;
    background: #bfeeff;
}

.mock-sidebar span:first-child {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.mock-main {
    display: grid;
    gap: 14px;
    align-content: start;
    padding: 20px;
}

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

.mock-topbar strong {
    color: var(--ink);
    font-size: 0.98rem;
    min-width: 0;
    overflow-wrap: anywhere;
}

.mock-topbar em {
    border-radius: 999px;
    background: rgba(64, 201, 145, 0.16);
    color: #13764e;
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 900;
    padding: 0.3rem 0.55rem;
    min-width: 0;
    overflow-wrap: anywhere;
}

.mock-search {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    min-width: 0;
    min-height: 42px;
    padding: 0 0.8rem;
    border: 1px solid rgba(17, 126, 232, 0.14);
    border-radius: 8px;
    background: #ffffff;
    color: var(--muted);
    font-size: 0.8rem;
}

.mock-search .icon {
    color: var(--blue);
}

.mock-search span,
.mock-kpis b {
    min-width: 0;
    overflow-wrap: anywhere;
}

.mock-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.mock-kpis div {
    min-height: 84px;
    border: 1px solid rgba(17, 126, 232, 0.12);
    border-radius: 8px;
    background: #ffffff;
    padding: 12px;
    box-shadow: 0 8px 18px rgba(8, 33, 63, 0.05);
}

.mock-kpis span {
    display: block;
    width: 58%;
    height: 24px;
    margin-bottom: 13px;
    border-radius: 999px;
    background: linear-gradient(90deg, #c4edff, #e8fbff, #c4edff);
    background-size: 200% 100%;
    animation: dataPulse 2.8s ease-in-out infinite;
}

.mock-kpis b {
    color: var(--ink-soft);
    font-size: 0.74rem;
}

.mock-table {
    display: grid;
    gap: 8px;
    padding: 13px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid rgba(17, 126, 232, 0.12);
}

.mock-table span {
    height: 11px;
    border-radius: 999px;
    background: linear-gradient(90deg, #e2f5ff, #bfeeff);
}

.mock-table span:nth-child(2) {
    width: 84%;
}

.mock-table span:nth-child(3) {
    width: 68%;
}

.mock-table span:nth-child(4) {
    width: 76%;
}

.visual-chip {
    position: absolute;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 42px;
    padding: 0.5rem 0.75rem;
    border: 1px solid rgba(17, 126, 232, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-card);
    color: var(--ink);
    font-size: 0.86rem;
    font-weight: 900;
    backdrop-filter: blur(12px);
}

.visual-chip .icon {
    color: var(--blue);
}

.chip-search {
    top: 34px;
    left: 0;
    animation: floatChip 5s ease-in-out infinite;
}

.chip-risk {
    right: 12px;
    top: 92px;
    animation: floatChip 5.8s ease-in-out infinite;
}

.chip-market {
    left: 58px;
    bottom: 60px;
    animation: floatChip 6.4s ease-in-out infinite;
}

.trust-section {
    padding: 28px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.76);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.75rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.62rem;
    min-height: 64px;
    padding: 0.85rem;
    border: 1px solid rgba(17, 126, 232, 0.12);
    border-radius: var(--radius-card);
    background: #ffffff;
    color: var(--ink-soft);
    font-size: 0.88rem;
    font-weight: 900;
}

.trust-item .icon {
    color: var(--cyan);
}

.section-block {
    position: relative;
    padding: 96px 0;
}

.feature-section {
    background: linear-gradient(180deg, rgba(233, 248, 255, 0.74), rgba(255, 255, 255, 0));
}

.section-heading {
    max-width: 780px;
    margin-bottom: 2.5rem;
    min-width: 0;
}

.section-heading.compact {
    max-width: 620px;
}

.section-heading h2,
.coverage-copy h2,
.transfer-heading h2,
.expertise-copy h2,
.cta-layout h2,
.form-copy h2 {
    margin: 0;
    color: var(--ink);
    font-size: 2.75rem;
    font-weight: 900;
    line-height: 1.08;
    overflow-wrap: anywhere;
}

.section-heading p,
.coverage-copy p,
.form-copy p {
    margin: 1rem 0 0;
    color: var(--ink-soft);
    font-size: 1.08rem;
    overflow-wrap: anywhere;
}

.card-grid {
    display: grid;
    gap: 1rem;
    min-width: 0;
}

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

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

.insight-card,
.feature-card,
.data-card,
.case-card,
.request-form {
    min-width: 0;
    border: 1px solid rgba(17, 126, 232, 0.12);
    border-radius: var(--radius-card);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-card);
}

.insight-card,
.feature-card {
    padding: 1.35rem;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.insight-card:hover,
.feature-card:hover,
.data-card:hover,
.case-card:hover {
    transform: translateY(-4px);
    border-color: rgba(17, 126, 232, 0.26);
    box-shadow: 0 18px 42px rgba(8, 33, 63, 0.1);
}

.icon-tile {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 1.1rem;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--surface-blue), var(--surface-cyan));
    color: var(--blue-dark);
}

.insight-card h3,
.feature-card h3,
.data-card h3,
.case-card h3,
.expertise-pillar h3 {
    margin: 0;
    color: var(--ink);
    font-size: 1.05rem;
    font-weight: 900;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.insight-card p,
.feature-card p,
.data-card p {
    margin: 0.7rem 0 0;
    color: var(--ink-soft);
    font-size: 0.94rem;
    overflow-wrap: anywhere;
}

.coverage-section {
    position: relative;
    padding: 96px 0;
    background:
        linear-gradient(135deg, rgba(17, 126, 232, 0.1), rgba(64, 201, 145, 0.08)),
        #f4fbff;
}

.coverage-section::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -54px;
    height: 110px;
    pointer-events: none;
    background:
        radial-gradient(54% 130% at 18% 100%, rgba(255, 255, 255, 0.96), transparent 70%),
        radial-gradient(54% 130% at 82% 100%, rgba(255, 255, 255, 0.94), transparent 72%);
    opacity: 0.95;
}

.coverage-layout {
    display: grid;
    grid-template-columns: 0.76fr 1.24fr;
    gap: 3rem;
    align-items: start;
    min-width: 0;
}

.coverage-copy {
    position: sticky;
    top: 116px;
    min-width: 0;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    min-width: 0;
}

.data-card {
    display: grid;
    gap: 0.72rem;
    min-height: 156px;
    padding: 1.25rem;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.data-card .icon {
    width: 1.6rem;
    height: 1.6rem;
    color: var(--blue);
}

.data-card p {
    color: var(--muted);
    font-weight: 800;
}

.technology-transfer-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 108px 0;
    background:
        radial-gradient(circle at 14% 18%, rgba(35, 182, 213, 0.15), transparent 28%),
        radial-gradient(circle at 86% 82%, rgba(64, 201, 145, 0.13), transparent 28%),
        linear-gradient(145deg, #ffffff 0%, #f3fbff 54%, #edf9ff 100%);
}

.technology-transfer-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(17, 126, 232, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 126, 232, 0.055) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(90deg, transparent, #000 22%, #000 78%, transparent);
}

.transfer-shell {
    position: relative;
    z-index: 1;
}

.transfer-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(2rem, 6vw, 5.5rem);
    align-items: end;
    margin-bottom: 3.4rem;
}

.transfer-heading h2 {
    max-width: 650px;
}

.transfer-lead {
    min-width: 0;
    padding: 1.15rem 0 1.15rem 1.5rem;
    border-left: 2px solid rgba(17, 126, 232, 0.2);
}

.transfer-lead p {
    max-width: 680px;
    margin: 0;
    color: var(--ink-soft);
    font-size: clamp(1.03rem, 1.5vw, 1.2rem);
    font-weight: 600;
    line-height: 1.72;
    overflow-wrap: anywhere;
}

.transfer-pathway {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    min-width: 0;
}

.transfer-stage {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 300px;
    padding: 1.5rem;
    border: 1px solid rgba(17, 126, 232, 0.15);
    border-radius: var(--radius-card);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 22px 54px rgba(8, 33, 63, 0.085);
    backdrop-filter: blur(14px);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.transfer-stage::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 1.5rem;
    right: 1.5rem;
    height: 3px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, var(--blue), var(--cyan), var(--mint));
}

.transfer-stage:not(:last-child)::after {
    content: "";
    position: absolute;
    z-index: 3;
    top: 50px;
    left: calc(100% + 1px);
    width: 1.25rem;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--mint));
    box-shadow: 0 0 0 5px rgba(35, 182, 213, 0.05);
}

.transfer-stage:hover {
    transform: translateY(-6px);
    border-color: rgba(17, 126, 232, 0.3);
    box-shadow: 0 28px 64px rgba(8, 33, 63, 0.13);
}

.transfer-stage-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.45rem;
}

.transfer-stage-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(17, 126, 232, 0.13);
    border-radius: var(--radius-ui);
    background: linear-gradient(145deg, #ffffff, var(--surface-blue));
    color: var(--blue);
    box-shadow: 0 10px 24px rgba(17, 126, 232, 0.12);
}

.transfer-stage-icon .icon {
    width: 1.55rem;
    height: 1.55rem;
}

.transfer-stage-number {
    color: rgba(8, 33, 63, 0.13);
    font-size: 2.55rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.06em;
}

.transfer-stage h3 {
    margin: 0;
    color: var(--ink);
    font-size: 1.22rem;
    font-weight: 900;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.transfer-stage p {
    margin: 0.82rem 0 0;
    color: var(--ink-soft);
    font-size: 0.94rem;
    line-height: 1.65;
    overflow-wrap: anywhere;
}

.transfer-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(17, 126, 232, 0.12);
}

.transfer-details span {
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 0.22rem 0.7rem 0.22rem 0;
    color: var(--ink-soft);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.transfer-details span::before {
    content: "";
    width: 3px;
    height: 20px;
    margin-right: 0.58rem;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--blue), var(--cyan));
    flex: 0 0 auto;
}

.transfer-details span + span {
    padding-left: 0.8rem;
    border-left: 1px solid rgba(17, 126, 232, 0.12);
}

.transfer-stage:nth-child(3) {
    border-color: rgba(35, 182, 213, 0.24);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(223, 247, 251, 0.72));
}

.transfer-stage:nth-child(3) .transfer-stage-icon {
    color: #178e75;
    background: linear-gradient(145deg, #ffffff, #e8fbf5);
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
    min-width: 0;
}

.case-card {
    display: grid;
    align-content: start;
    gap: 1rem;
    min-height: 158px;
    padding: 1.25rem;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.case-card .icon {
    width: 1.7rem;
    height: 1.7rem;
    color: var(--cyan);
}

.expertise-section {
    position: relative;
    overflow: hidden;
    padding: 96px 0;
    background:
        linear-gradient(135deg, rgba(35, 182, 213, 0.24), transparent 34%),
        linear-gradient(145deg, #071d36, #0b3d73 62%, #0f6fad);
    color: #ffffff;
}

.expertise-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(120deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(300deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 110px 110px;
}

.expertise-layout {
    position: relative;
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 3rem;
    align-items: center;
    min-width: 0;
}

.expertise-copy h2,
.expertise-copy p {
    color: #ffffff;
}

.expertise-copy p {
    margin: 1rem 0 0;
    color: #d7f4ff;
    font-size: 1.08rem;
    overflow-wrap: anywhere;
}

.expertise-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    min-width: 0;
}

.expertise-pillar {
    display: grid;
    gap: 0.9rem;
    min-width: 0;
    min-height: 132px;
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-card);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
}

.expertise-pillar .icon {
    color: #87edff;
}

.expertise-pillar h3 {
    color: #ffffff;
}

.expertise-note {
    grid-column: 1 / -1;
    margin: 0;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-card);
    background: rgba(255, 255, 255, 0.12);
    color: #e5f8ff;
    overflow-wrap: anywhere;
}

.cta-section {
    position: relative;
    padding: 86px 0;
    background: #ffffff;
}

.cta-section::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -74px;
    height: 150px;
    pointer-events: none;
    background:
        radial-gradient(52% 120% at 16% 100%, rgba(255, 255, 255, 0.92), transparent 68%),
        radial-gradient(52% 120% at 84% 100%, rgba(255, 255, 255, 0.9), transparent 70%);
}

.cta-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    min-width: 0;
    padding: 2rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.cta-layout h2 {
    max-width: 760px;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.85rem;
    min-width: 0;
}

.pricing-section {
    position: relative;
    padding: 96px 0;
    background:
        radial-gradient(circle at top right, rgba(17, 126, 232, 0.11), transparent 28%),
        linear-gradient(180deg, #ffffff, #edf9ff);
}

.pricing-section::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -1px;
    height: 90px;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), transparent),
        radial-gradient(42% 90% at 50% 0%, rgba(255, 255, 255, 0.92), transparent 74%);
}

.pricing-heading {
    max-width: 860px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
    min-width: 0;
}

.pricing-card {
    position: relative;
    display: grid;
    gap: 1rem;
    min-width: 0;
    padding: 1.5rem;
    border: 1px solid rgba(17, 126, 232, 0.12);
    border-radius: var(--radius-card);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 44px rgba(8, 33, 63, 0.09);
    overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.pricing-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, rgba(35, 182, 213, 0.8), rgba(17, 126, 232, 0.95));
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(17, 126, 232, 0.24);
    box-shadow: 0 28px 56px rgba(8, 33, 63, 0.12);
}

.paid-card {
    background:
        linear-gradient(145deg, rgba(8, 33, 63, 0.03), rgba(17, 126, 232, 0.08)),
        rgba(255, 255, 255, 0.98);
}

.pricing-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.pricing-topline .icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--blue);
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    min-height: 32px;
    padding: 0.35rem 0.72rem;
    border-radius: 999px;
    background: rgba(64, 201, 145, 0.12);
    color: #13764e;
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    overflow-wrap: anywhere;
}

.pricing-badge-strong {
    background: rgba(17, 126, 232, 0.12);
    color: var(--blue-dark);
}

.pricing-card h3 {
    margin: 0;
    color: var(--ink);
    font-size: 1.65rem;
    font-weight: 900;
    line-height: 1.1;
    overflow-wrap: anywhere;
}

.pricing-summary {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.98rem;
    overflow-wrap: anywhere;
}

.pricing-price {
    color: var(--ink);
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1;
}

.pricing-points {
    display: grid;
    gap: 0.78rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pricing-points li {
    display: flex;
    align-items: flex-start;
    gap: 0.62rem;
    min-width: 0;
    color: var(--ink-soft);
    font-weight: 800;
    overflow-wrap: anywhere;
}

.pricing-points .icon {
    margin-top: 0.1rem;
    color: var(--mint);
}

.pricing-button {
    width: 100%;
    margin-top: 0.5rem;
}

.pricing-upgrade-action {
    display: flex;
    justify-content: center;
    margin: 1.2rem 0 0;
}

.pricing-upgrade-button {
    min-width: min(100%, 330px);
    border-color: rgba(17, 126, 232, 0.2);
    background: rgba(255, 255, 255, 0.88);
    color: var(--blue-dark);
    box-shadow: 0 14px 32px rgba(8, 33, 63, 0.08);
}

.pricing-upgrade-button:hover {
    border-color: rgba(17, 126, 232, 0.34);
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(8, 33, 63, 0.12);
}

.pricing-footnote {
    margin: 1rem 0 0;
    color: var(--ink-soft);
    font-size: 0.92rem;
    font-weight: 800;
}

.pricing-footnote a {
    color: var(--blue-dark);
    text-decoration: none;
}

.hidden {
    display: none !important;
}

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

.footer-grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    min-width: 0;
}

.footer-brand {
    display: grid;
    gap: 0.32rem;
    min-width: 0;
}

.footer-brand strong {
    color: var(--ink);
    font-size: 1.35rem;
    font-weight: 900;
}

.footer-brand span,
.footer-brand a {
    color: var(--ink-soft);
    font-size: 0.92rem;
    font-weight: 800;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.9rem 1.2rem;
    min-width: 0;
}

.footer-links a {
    color: var(--ink-soft);
    font-size: 0.9rem;
    font-weight: 900;
    text-decoration: none;
    overflow-wrap: anywhere;
    transition: color 160ms ease;
}

.footer-links a:hover,
.footer-brand a:hover {
    color: var(--blue);
}

.js [data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 620ms ease, transform 620ms ease;
}

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

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

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

@keyframes dataPulse {
    0% {
        background-position: 0 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

@media (max-width: 1500px) {
    .header-inner {
        gap: 0.9rem;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: max(16px, calc((100vw - 1180px) / 2 + 24px));
        right: max(16px, calc((100vw - 1180px) / 2 + 24px));
        display: grid;
        gap: 0.35rem;
        padding: 0.8rem;
        border: 1px solid var(--line);
        border-radius: var(--radius-card);
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow-soft);
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    }

    .main-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
        transform: translateY(0);
    }

    .main-nav a {
        padding: 0.72rem 0.85rem;
        border-radius: var(--radius-ui);
        overflow-wrap: anywhere;
    }

    .main-nav a:hover {
        background: var(--surface-blue);
    }

    .header-actions .button-primary,
    .header-actions .trial-pill {
        display: none;
    }

    .header-actions {
        margin-left: auto;
    }

    .language-switcher {
        margin-left: auto;
    }

    .menu-toggle {
        display: grid;
        flex: 0 0 auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-copy {
        max-width: 820px;
    }

    .hero-visual {
        min-height: auto;
    }

    .card-grid.four,
    .use-case-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (min-width: 1501px) {
    .main-nav a {
        white-space: nowrap;
    }
}

@media (max-width: 900px) {
    .hero-copy h1 {
        font-size: 3.15rem;
    }

    .section-heading h2,
    .coverage-copy h2,
    .transfer-heading h2,
    .expertise-copy h2,
    .cta-layout h2,
    .form-copy h2 {
        font-size: 2.25rem;
    }

    .card-grid.three,
    .coverage-layout,
    .expertise-layout,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .transfer-heading,
    .transfer-pathway {
        grid-template-columns: 1fr;
    }

    .transfer-heading {
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .transfer-heading h2 {
        max-width: none;
    }

    .transfer-stage {
        min-height: 0;
    }

    .transfer-stage:not(:last-child)::after {
        top: 100%;
        left: 40px;
        width: 2px;
        height: 1.25rem;
        background: linear-gradient(180deg, var(--cyan), var(--mint));
    }

    .coverage-copy {
        position: static;
    }

    .cta-layout,
    .footer-grid {
        align-items: flex-start;
        flex-direction: column;
    }

    .cta-actions,
    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100% - 32px, 1180px);
    }

    .header-inner {
        min-height: 74px;
        gap: 0.75rem;
    }

    .brand-name {
        font-size: 1.34rem;
    }

    .brand-powered {
        max-width: min(100%, 260px);
        min-height: 0;
        padding: 0.3rem 0.58rem;
        gap: 0.4rem;
        font-size: 0.72rem;
        line-height: 1.15;
    }

    .brand-powered-label {
        font-size: 0.62rem;
    }

    .button {
        min-height: 42px;
        padding-inline: 0.82rem;
        font-size: 0.9rem;
        line-height: 1.15;
        white-space: normal;
    }

    .language-link {
        min-height: 42px;
    }

    .language-trigger {
        min-height: 40px;
        padding-left: 0.7rem;
    }

    .language-trigger-label {
        display: none;
    }

    .language-menu {
        right: -0.1rem;
        min-width: 170px;
    }

    .hero-section {
        padding: 88px 0 50px;
    }

    .hero-copy h1 {
        font-size: 2.45rem;
        line-height: 1.1;
    }

    .hero-lead {
        font-size: 1.02rem;
    }

    .hero-actions,
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .button,
    .cta-actions .button {
        width: 100%;
    }

    .hero-assurance {
        display: grid;
    }

    .visual-chip {
        display: none;
    }

    .laptop-lid {
        padding: 9px;
        border-radius: 12px 12px 8px 8px;
    }

    .screen-placeholder {
        grid-template-columns: 54px 1fr;
    }

    .mock-sidebar {
        padding: 14px 10px;
    }

    .mock-main {
        gap: 8px;
        padding: 12px;
    }

    .mock-kpis {
        grid-template-columns: 1fr;
    }

    .mock-kpis div {
        min-height: 48px;
        padding: 8px;
    }

    .mock-kpis span {
        height: 10px;
        margin-bottom: 6px;
    }

    .trust-grid,
    .card-grid.four,
    .coverage-grid,
    .use-case-grid,
    .expertise-panel {
        grid-template-columns: 1fr;
    }

    .section-block,
    .coverage-section,
    .technology-transfer-section,
    .expertise-section,
    .pricing-section {
        padding: 68px 0;
    }

    .section-heading {
        margin-bottom: 1.8rem;
    }

    .section-heading h2,
    .coverage-copy h2,
    .transfer-heading h2,
    .expertise-copy h2,
    .cta-layout h2,
    .form-copy h2 {
        font-size: 2rem;
    }

    .pricing-card {
        padding: 1.2rem;
    }

    .pricing-card h3 {
        font-size: 1.4rem;
    }

    .pricing-price {
        font-size: 2rem;
    }

    .transfer-lead {
        padding: 0.9rem 0 0.9rem 1.15rem;
    }

    .transfer-stage {
        padding: 1.25rem;
    }
}

@media (max-width: 520px) {
    .brand {
        gap: 0.24rem;
    }

    .brand-powered {
        max-width: min(100%, 220px);
        padding-inline: 0.5rem;
        row-gap: 0.24rem;
    }

    .header-actions {
        gap: 0.45rem;
    }

    .transfer-details {
        grid-template-columns: 1fr;
    }

    .transfer-details span {
        padding: 0.45rem 0;
    }

    .transfer-details span + span {
        padding-left: 0;
        border-top: 1px solid rgba(17, 126, 232, 0.1);
        border-left: 0;
    }
}

@media (max-width: 380px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .brand-name {
        font-size: 1.18rem;
    }

    .brand-powered {
        max-width: min(100%, 170px);
        font-size: 0.68rem;
    }

    .brand-powered-label {
        font-size: 0.56rem;
    }

    .language-trigger {
        min-height: 38px;
        padding: 0.2rem 0.34rem;
    }

    .language-trigger-current {
        min-width: 34px;
        min-height: 30px;
        padding: 0 0.48rem;
        font-size: 0.72rem;
    }

    .language-trigger::after {
        width: 0.4rem;
        height: 0.4rem;
        margin-left: 0;
    }

    .menu-toggle {
        width: 42px;
        height: 40px;
    }

    .transfer-stage-top {
        margin-bottom: 1.15rem;
    }

    .transfer-stage-icon {
        width: 48px;
        height: 48px;
    }

    .transfer-stage-number {
        font-size: 2.15rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }
}
