:root {
    --navy-950: #071028;
    --navy-900: #08183a;
    --navy-850: #0b214f;
    --brand-blue: #043168;
    --brand-blue-2: #4caf50;
    --signal-blue: #5fb662;
    --green: #10a35d;
    --green-2: #42b957;
    --mint: #dff8ea;
    --sky: #8fb7ff;
    --ink: #0d1731;
    --muted: #63708a;
    --paper: #f7f8fa;
    --paper-2: #eef4fb;
    --white: #ffffff;
    --line: rgba(13, 23, 49, 0.12);
    --line-dark: rgba(255, 255, 255, 0.14);
    --shadow: 0 20px 60px rgba(7, 16, 40, 0.16);
    --shadow-soft: 0 12px 36px rgba(7, 16, 40, 0.1);
    --radius: 8px;
    --container: 1180px;
    --heading-font: Poppins, Montserrat, Inter, "Segoe UI", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}

body.nav-open {
    overflow: hidden;
}

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

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

p {
    margin: 0;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    color: inherit;
    font-family: var(--heading-font);
    letter-spacing: 0;
    line-height: 1.02;
}

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

.screen-reader-text,
.skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    width: auto;
    height: auto;
    padding: 12px 16px;
    clip: auto;
    color: var(--white);
    background: var(--brand-blue);
    border-radius: var(--radius);
}

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

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    right: 0;
    color: var(--white);
    transition: background-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
    background: rgba(7, 16, 40, 0.88);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(18px);
}

.top-ribbon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 40px;
    padding: 8px 18px;
    background: linear-gradient(90deg, var(--brand-blue), var(--signal-blue));
    color: #edf5ff;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}

.status-dot {
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border-radius: 999px;
    background: var(--green-2);
    box-shadow: 0 0 0 6px rgba(66, 185, 87, 0.16);
}

.nav-shell {
    width: 100%;
    min-height: 74px;
    margin: 0;
    padding: 12px max(20px, calc((100% - 1220px) / 2));
    display: flex;
    align-items: center;
    gap: 24px;
    background: rgba(7, 16, 40, 0.72);
    border: 0;
    border-bottom: 1px solid var(--line-dark);
    border-radius: 0;
    backdrop-filter: blur(22px);
}

.brand-link {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    padding: 0;
    border-radius: var(--radius);
    background: transparent;
}

.brand-link img {
    width: 145px;
    height: auto;
    filter: brightness(0) invert(1);
}

.site-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex: 1 1 auto;
}

.site-menu a {
    position: relative;
    color: #d9e5fb;
    font-size: 15px;
    font-weight: 700;
    transition: color 180ms ease;
}

.site-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(90deg, var(--green), var(--sky));
    transition: transform 220ms ease;
}

.site-menu a:hover,
.site-menu a:focus {
    color: var(--white);
}

.site-menu a:hover::after,
.site-menu a:focus::after {
    transform: scaleX(1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.nav-toggle span:not(.screen-reader-text) {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: currentColor;
    transition: transform 200ms ease, opacity 200ms ease;
}

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

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 800;
    line-height: 1;
    transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.btn::after {
    content: "";
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M13.293 5.293 20 12l-6.707 6.707-1.414-1.414L16.172 13H4v-2h12.172l-4.293-4.293z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M13.293 5.293 20 12l-6.707 6.707-1.414-1.414L16.172 13H4v-2h12.172l-4.293-4.293z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.btn:hover,
.btn:focus {
    transform: translateY(-2px);
}

.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--brand-blue-2), var(--signal-blue));
    box-shadow: 0 14px 34px rgba(15, 93, 202, 0.28);
}

.btn-green {
    color: var(--white);
    background: linear-gradient(135deg, var(--green), var(--green-2));
    box-shadow: 0 14px 34px rgba(16, 163, 93, 0.28);
}

.btn-ghost {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--line-dark);
}

.btn-light {
    color: var(--brand-blue);
    background: var(--white);
    border-color: rgba(255, 255, 255, 0.72);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin-bottom: 18px;
    padding: 8px 12px;
    border: 1px solid rgba(143, 183, 255, 0.3);
    border-radius: 999px;
    color: #bdd0f5;
    background: rgba(255, 255, 255, 0.06);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow.green {
    color: var(--green);
    border-color: rgba(16, 163, 93, 0.28);
    background: rgba(16, 163, 93, 0.08);
}

.section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
}

.section-dark {
    color: var(--white);
    background: radial-gradient(circle at 70% 20%, rgba(15, 93, 202, 0.2), transparent 34%), var(--navy-950);
}

.section-light {
    background: var(--paper);
}

.section-white {
    background: var(--white);
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 46px;
}

.section-heading > div {
    max-width: 760px;
}

.section-heading h2 {
    font-size: clamp(32px, 4.5vw, 54px);
}

.section-heading p {
    max-width: 560px;
    color: var(--muted);
    font-size: 18px;
}

.section-dark .section-heading p,
.section-dark .muted {
    color: #b7c4dc;
}

.hero {
    min-height: 790px;
    display: flex;
    align-items: center;
    padding: 186px 0 90px;
    color: var(--white);
    background:
        linear-gradient(180deg, rgba(7, 16, 40, 0.96), rgba(8, 24, 58, 0.96)),
        radial-gradient(circle at 80% 34%, rgba(16, 163, 93, 0.22), transparent 32%),
        var(--navy-950);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.28;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 54px;
}

.hero-copy {
    flex: 0 1 640px;
}

.hero h1 {
    max-width: 760px;
    font-size: clamp(36px, 4.6vw, 56px);
    font-weight: 900;
}

.hero h1 span {
    display: block;
    color: var(--sky);
}

.hero-copy p {
    max-width: 520px;
    margin-top: 24px;
    color: #c8d3e9;
    font-size: 20px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-visual {
    position: relative;
    flex: 1 1 520px;
    min-height: 520px;
}

.hero-visual-image {
    position: absolute;
    right: -42px;
    top: 24px;
    width: min(610px, 100%);
    filter: drop-shadow(0 36px 70px rgba(0, 0, 0, 0.3));
    animation: floatVisual 6.5s ease-in-out infinite;
        border-radius: 20px;
}

.orbit-line {
    position: absolute;
    left: -16px;
    right: -16px;
    top: 210px;
    height: 2px;
    opacity: 0.55;
    background: linear-gradient(90deg, transparent, rgba(143, 183, 255, 0.6), transparent);
}

.orbit-line::after {
    content: "";
    position: absolute;
    left: 16%;
    top: -5px;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--signal-blue);
    box-shadow: 0 0 0 8px rgba(15, 93, 202, 0.2);
    animation: routePulse 3.6s ease-in-out infinite;
}

.floating-chip {
    position: absolute;
    z-index: 2;
    min-width: 142px;
    padding: 10px 12px;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    color: #eef5ff;
    background: rgba(7, 16, 40, 0.72);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(18px);
    font-size: 13px;
    animation: floatChip 5s ease-in-out infinite;
}

.floating-chip strong {
    display: block;
    color: var(--white);
    font-size: 16px;
}

.chip-one {
    top: 74px;
    left: 28px;
}

.chip-two {
    top: 270px;
    right: 0;
    animation-delay: -1.4s;
}

.chip-three {
    left: 82px;
    bottom: 72px;
    animation-delay: -2.2s;
}

.split {
    display: flex;
    align-items: center;
    gap: 54px;
}

.split > * {
    flex: 1 1 0;
}

.comparison {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: stretch;
    gap: 56px;
}

.comparison::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: 96px;
    height: 96px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(20, 92, 180, 0.2), rgba(83, 199, 105, 0.08) 52%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.comparison::after {
    content: "";
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    width: 76px;
    height: 54px;
    background: linear-gradient(90deg, var(--brand-blue), var(--signal-blue) 56%, var(--green));
    clip-path: polygon(0 18%, 58% 18%, 58% 0, 100% 50%, 58% 100%, 58% 82%, 0 82%);
    filter: drop-shadow(0 16px 20px rgba(20, 92, 180, 0.26));
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.compare-col {
    position: relative;
    z-index: 2;
    flex: 1 1 0;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.compare-col.solution {
    border-color: rgba(16, 163, 93, 0.28);
    background: linear-gradient(180deg, #ffffff, #f4fff9);
}

.compare-col h3 {
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 1.1;
}

.compare-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.compare-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 56px;
    color: var(--ink);
    font-weight: 800;
}

.icon-dot {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 999px;
    color: var(--brand-blue);
    background: #eef4ff;
    font-size: 18px;
}

.solution .icon-dot {
    color: var(--green);
    background: var(--mint);
}

.product-frame {
    position: relative;
}

.product-frame img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.product-frame::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 34px -16px -22px 44px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(15, 93, 202, 0.2), rgba(16, 163, 93, 0.24));
}

.platform-showcase {
    display: flex;
    align-items: stretch;
    gap: 28px;
}

.feature-steps {
    flex: 0 0 36%;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.step-card,
.product-card,
.news-card,
.metric-card,
.team-card,
.legal-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.step-card {
    padding: 22px;
    color: var(--ink);
}

.step-card span {
    color: var(--green);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.step-card h3 {
    margin-top: 8px;
    font-size: 21px;
    line-height: 1.06;
}

.step-card p {
    margin-top: 10px;
    color: var(--muted);
}

.dashboard-panel {
    position: relative;
    flex: 1 1 auto;
    min-height: 520px;
    padding: 22px;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
    overflow: hidden;
}

.dashboard-panel img {
    width: 100%;
    height: 100%;
    min-height: 476px;
    object-fit: cover;
    border-radius: var(--radius);
}

.dashboard-panel::after {
    content: "";
    position: absolute;
    inset: 22px;
    border-radius: var(--radius);
    background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.34) 45%, transparent 54%);
    transform: translateX(-120%);
    animation: sheen 5s ease-in-out infinite;
    pointer-events: none;
}

.products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.product-section {
    overflow: visible;
}

.product-ecosystem-layout {
    display: grid;
    grid-template-columns: minmax(380px, 0.92fr) minmax(0, 1.08fr);
    gap: 34px;
    align-items: start;
}

.product-sticky-panel {
    position: sticky;
    top: 118px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.96)),
        var(--white);
    box-shadow: var(--shadow-soft);
}

.product-sticky-panel h2 {
    color: var(--brand-blue);
    font-size: clamp(30px, 3vw, 38px);
}

.product-sticky-panel p {
    margin-top: 16px;
    color: var(--muted);
}

.product-ecosystem-art {
    margin-top: 24px;
    overflow: hidden;
    border: 1px solid rgba(13, 23, 49, 0.08);
    border-radius: var(--radius);
    background: var(--white);
}

.product-ecosystem-art img {
    width: 100%;
    max-height: 220px;
    object-fit: contain;
    object-position: center;
}

.product-module-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
}

.product-card {
    flex: 1 1 300px;
    min-height: 220px;
    padding: 24px;
    transition: transform 180ms ease, border-color 180ms ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 163, 93, 0.38);
}

.product-card .product-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(20, 92, 180, 0.18);
    border-radius: 14px;
    color: var(--brand-blue);
    background: linear-gradient(180deg, var(--white), #f5fbff);
    box-shadow: 0 12px 28px rgba(7, 16, 40, 0.08);
}

.product-card:nth-child(even) .product-icon {
    border-color: rgba(16, 163, 93, 0.2);
    color: var(--green);
    background: linear-gradient(180deg, var(--white), #f4fff9);
}

.product-card .product-icon svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.product-card .product-icon .accent {
    stroke: var(--green);
}

.product-card:nth-child(even) .product-icon .accent {
    stroke: var(--brand-blue);
}

.product-card h3 {
    margin-top: 18px;
    color: var(--brand-blue);
    font-size: 22px;
}

.product-card p {
    margin-top: 12px;
    color: var(--muted);
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.metric-card {
    flex: 1 1 210px;
    padding: 24px;
    color: var(--ink);
}

.metric-card strong {
    display: block;
    color: var(--brand-blue);
    font-family: var(--heading-font);
    font-size: 48px;
    line-height: 1;
}

.metric-card span {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    font-weight: 800;
}

.image-bleed {
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.image-bleed img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
}

.timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    overflow: visible;
    padding: 58px 0 0;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 5%;
    right: 5%;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand-blue), var(--green));
}

.timeline-item {
    position: relative;
    min-width: 0;
    padding: 0 12px;
}

.timeline-item::before {
    content: "";
    position: absolute;
    top: -43px;
    left: 18px;
    width: 18px;
    height: 18px;
    border: 4px solid var(--white);
    border-radius: 999px;
    background: var(--green);
    box-shadow: 0 0 0 4px rgba(16, 163, 93, 0.15);
}

.timeline-year {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 0 10px;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(135deg, var(--signal-blue), var(--green));
    font-size: 13px;
    font-weight: 900;
}

.timeline-item h3 {
    margin-top: 16px;
    color: var(--brand-blue);
    font-size: 20px;
    line-height: 1.12;
}

.timeline-item p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 14px;
}

.team-section {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(7, 16, 40, 0.98), rgba(4, 45, 79, 0.96) 58%, rgba(0, 86, 55, 0.92)),
        var(--navy-950);
}

.team-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(180deg, #000, transparent 78%);
    opacity: 0.58;
    pointer-events: none;
}

.team-section .container {
    position: relative;
}

.team-section .section-heading h2 {
    color: var(--white);
}

.team-section .section-heading p {
    color: #c6d4eb;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 42px;
}

.team-card {
    flex: 1 1 290px;
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 30px;
    flex-direction: column;
    overflow: visible;
    text-align: center;
    border-color: rgba(255, 255, 255, 0.14);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.07));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(14px);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: rgba(83, 199, 105, 0.58);
    box-shadow: 0 30px 86px rgba(0, 0, 0, 0.34);
}

.team-photo {
    flex: 0 0 auto;
    width: 154px;
    height: 154px;
    min-height: 0;
    padding: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(83, 199, 105, 0.92), rgba(20, 92, 180, 0.92));
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: inherit;
    transition: transform 420ms ease;
}

.team-card:hover .team-photo img {
    transform: scale(1.04);
}

.team-body {
    flex: 1 1 auto;
    display: flex;
    min-width: 0;
    padding: 22px 0 0;
    flex-direction: column;
    align-items: center;
}

.team-body h3 {
    color: var(--white);
    font-size: 24px;
    line-height: 1.06;
}

.team-role {
    position: relative;
    display: inline-flex;
    width: fit-content;
    margin-top: 7px;
    padding-bottom: 13px;
    color: #7fe38c;
    font-weight: 900;
}

.team-role::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 54px;
    height: 3px;
    border-radius: 999px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--green), var(--signal-blue));
}

.team-body p {
    margin-top: 16px;
    color: #c6d4eb;
    font-size: 15px;
}

.team-experience {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
    text-align: left;
}

.team-experience li {
    position: relative;
    padding-left: 34px;
    color: #e8f0ff;
    font-size: 13px;
    line-height: 1.45;
}

.team-experience li::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(127, 227, 140, 0.45);
    border-radius: 6px;
    background: rgba(127, 227, 140, 0.12);
}

.team-experience li::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 6px;
    width: 8px;
    height: 5px;
    border-bottom: 2px solid #7fe38c;
    border-left: 2px solid #7fe38c;
    transform: rotate(-45deg);
}

.news-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

.news-card {
    flex: 1 1 310px;
    overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.news-card a {
    display: block;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.news-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.news-card-body {
    padding: 24px;
}

.news-date {
    color: var(--green);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.news-card h3 {
    margin-top: 12px;
    color: var(--brand-blue);
    font-size: 23px;
    line-height: 1.06;
}

.news-card p {
    margin-top: 14px;
    color: var(--muted);
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--brand-blue);
    font-weight: 900;
}

.news-link::after {
    content: "";
    width: 15px;
    height: 15px;
    flex: 0 0 auto;
    background: var(--green);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M13.293 5.293 20 12l-6.707 6.707-1.414-1.414L16.172 13H4v-2h12.172l-4.293-4.293z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M13.293 5.293 20 12l-6.707 6.707-1.414-1.414L16.172 13H4v-2h12.172l-4.293-4.293z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.logo-showcase {
    background: linear-gradient(180deg, var(--white), #f6fbff);
}

.logo-showcase .section-heading {
    margin-bottom: 34px;
}

.logo-board {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, var(--white), #fbfdff);
    box-shadow: var(--shadow-soft);
}

.logo-lane {
    display: grid;
    grid-template-columns: minmax(164px, 210px) 1fr;
    align-items: stretch;
    min-height: 142px;
}

.logo-lane + .logo-lane {
    border-top: 1px solid var(--line);
}

.logo-lane-label {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 18px 0 18px 18px;
    padding: 22px;
    border-radius: var(--radius);
    color: var(--white);
    background: linear-gradient(135deg, var(--brand-blue), var(--navy-850));
    text-transform: uppercase;
}

.logo-lane-partners .logo-lane-label {
    background: linear-gradient(135deg, var(--green), var(--brand-blue));
}

.logo-lane-label span {
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.logo-lane-label strong {
    margin-top: 4px;
    font-family: var(--heading-font);
    font-size: 20px;
    line-height: 1.05;
}

.logo-cloud {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: center;
    gap: 18px;
    padding: 28px;
}

.logo-lane-customers .logo-cloud {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 68px;
    padding: 10px;
    border: 1px solid rgba(13, 23, 49, 0.08);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.86);
}

.logo-mark img {
    width: auto;
    max-width: min(126px, 100%);
    max-height: 48px;
    object-fit: contain;
}

.logo-mark-wide img {
    max-width: min(148px, 100%);
}

.cta-band {
    padding: 84px 0;
    color: var(--white);
    background:
        radial-gradient(circle at 82% 12%, rgba(16, 163, 93, 0.26), transparent 28%),
        linear-gradient(135deg, var(--navy-950), var(--brand-blue));
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-inner h2 {
    max-width: 700px;
    font-size: clamp(32px, 4.4vw, 52px);
}

.cta-inner p {
    max-width: 520px;
    margin-top: 16px;
    color: #c5d2e8;
}

.contact-grid {
    display: flex;
    align-items: stretch;
    gap: 28px;
}

.contact-panel {
    flex: 0 0 38%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.contact-item strong {
    display: block;
    color: var(--green);
    font-size: 14px;
}

.contact-item span,
.contact-item a {
    display: block;
    margin-top: 6px;
    color: var(--brand-blue);
    font-weight: 800;
}

.contact-image {
    flex: 1 1 auto;
    min-height: 500px;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero {
    padding: 190px 0 92px;
    color: var(--white);
    background:
        radial-gradient(circle at 78% 22%, rgba(16, 163, 93, 0.22), transparent 34%),
        linear-gradient(180deg, var(--navy-950), var(--navy-900));
}

.page-hero h1 {
    max-width: 880px;
    font-size: clamp(36px, 5vw, 58px);
}

.page-hero p {
    max-width: 660px;
    margin-top: 22px;
    color: #c4d0e5;
    font-size: 19px;
}

.article-layout {
    display: flex;
    align-items: flex-start;
    gap: 42px;
}

.article-main {
    flex: 1 1 auto;
    min-width: 0;
}

.article-main img.article-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.article-content {
    margin-top: 34px;
    color: #22304a;
    font-size: 18px;
}

.article-content p + p,
.article-content h2 + p,
.article-content p + h2 {
    margin-top: 20px;
}

.article-content h2 {
    color: var(--brand-blue);
    font-size: 30px;
    line-height: 1.1;
}

.article-sidebar {
    position: sticky;
    top: 150px;
    flex: 0 0 320px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.article-sidebar h2 {
    color: var(--brand-blue);
    font-size: 22px;
}

.article-sidebar a {
    display: block;
    margin-top: 18px;
    color: var(--muted);
    font-weight: 800;
}

.legal-wrap {
    max-width: 920px;
    margin-inline: auto;
}

.legal-card {
    padding: clamp(24px, 5vw, 54px);
}

.legal-card h2 {
    margin-top: 34px;
    color: var(--brand-blue);
    font-size: 28px;
    line-height: 1.1;
}

.legal-card h2:first-child {
    margin-top: 0;
}

.legal-card p,
.legal-card li {
    color: #293850;
}

.legal-card p + p,
.legal-card p + ul,
.legal-card ul + h2 {
    margin-top: 16px;
}

.site-footer {
    padding: 70px 0 28px;
    color: #d6e0f4;
    background: var(--navy-950);
}

.footer-inner {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.footer-brand {
    flex: 1.4 1 330px;
}

.footer-brand img {
    width: 154px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    max-width: 420px;
    margin-top: 22px;
    color: #aebbd4;
}

.footer-social {
    display: inline-flex;
    margin-top: 18px;
    color: var(--green-2);
    font-weight: 900;
}

.footer-col {
    flex: 1 1 170px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col h2 {
    margin-bottom: 10px;
    color: var(--white);
    font-size: 19px;
}

.footer-col a,
.footer-col p {
    color: #aebbd4;
}

.footer-col a:hover,
.footer-col a:focus {
    color: var(--white);
}

.footer-bottom {
    width: min(100% - 40px, var(--container));
    margin: 46px auto 0;
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid var(--line-dark);
    color: #93a2be;
    font-size: 14px;
}

.footer-bottom div {
    display: flex;
    gap: 18px;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 620ms ease, transform 620ms ease;
}

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

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

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

@keyframes routePulse {
    0%,
    100% {
        left: 16%;
        opacity: 0.6;
    }
    50% {
        left: 72%;
        opacity: 1;
    }
}

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

@keyframes sheen {
    0%,
    45% {
        transform: translateX(-120%);
    }
    70%,
    100% {
        transform: translateX(120%);
    }
}

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

@media (max-width: 1020px) {
    .nav-shell {
        gap: 14px;
    }

    .site-menu {
        gap: 16px;
    }

    .nav-actions .btn-ghost {
        display: none;
    }

    .hero-grid,
    .split,
    .platform-showcase,
    .contact-grid,
    .article-layout,
    .cta-inner,
    .footer-inner {
        flex-direction: column;
    }

    .hero-copy,
    .hero-visual,
    .feature-steps,
    .contact-panel,
    .article-sidebar {
        flex-basis: auto;
        width: 100%;
    }

    .hero-visual {
        min-height: 470px;
    }

    .hero-visual-image {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        animation-name: none;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .product-ecosystem-layout {
        grid-template-columns: 1fr;
    }

    .product-sticky-panel {
        position: static;
    }

    .timeline {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0 0 0 30px;
    }

    .timeline::before {
        top: 0;
        bottom: 0;
        left: 8px;
        right: auto;
        width: 3px;
        height: auto;
    }

    .timeline-item {
        padding: 0 0 0 8px;
    }

    .timeline-item::before {
        top: 6px;
        left: -31px;
    }

    .team-card {
        flex-basis: calc(50% - 12px);
    }

    .article-sidebar {
        position: static;
    }
}

@media (max-width: 760px) {
    .container,
    .footer-inner,
    .footer-bottom {
        width: min(100% - 28px, var(--container));
    }

    .top-ribbon {
        font-size: 12px;
    }

    .nav-shell {
        min-height: 64px;
        width: 100%;
        margin-top: 0;
        padding: 10px 14px;
    }

    .brand-link img {
        width: 118px;
    }

    .nav-toggle {
        display: block;
        margin-left: auto;
    }

    .site-menu {
        position: fixed;
        z-index: 101;
        top: 116px;
        left: 14px;
        right: 14px;
        display: none;
        padding: 22px;
        flex-direction: column;
        align-items: flex-start;
        background: rgba(7, 16, 40, 0.96);
        border: 1px solid var(--line-dark);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }

    .nav-open .site-menu {
        display: flex;
    }

    .nav-actions {
        display: none;
    }

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

    .hero-grid {
        gap: 34px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: clamp(36px, 10vw, 48px);
    }

    .hero-copy p,
    .page-hero p {
        font-size: 17px;
    }

    .hero-visual {
        min-height: 390px;
    }

    .hero-visual-image {
        top: 20px;
        width: 430px;
        max-width: 104%;
    }

    .orbit-line {
        left: 0;
        right: 0;
    }

    .floating-chip {
        min-width: 124px;
        font-size: 12px;
    }

    .chip-one {
        left: 0;
        top: 34px;
    }

    .chip-two {
        right: 0;
        top: 210px;
    }

    .chip-three {
        left: 20px;
        bottom: 20px;
    }

    .section {
        padding: 72px 0;
    }

    .comparison,
    .stats-grid,
    .news-grid,
    .products-grid {
        flex-direction: column;
    }

    .news-card {
        flex: 0 0 auto;
        width: 100%;
    }

    .logo-lane {
        grid-template-columns: 1fr;
    }

    .logo-lane-label {
        margin: 0;
        min-height: 86px;
        padding: 22px;
    }

    .logo-cloud,
    .logo-lane-customers .logo-cloud {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 20px;
        padding: 24px;
    }

    .logo-mark {
        min-height: 78px;
    }

    .logo-mark img,
    .logo-mark-wide img {
        max-width: 136px;
        max-height: 54px;
    }

    .comparison {
        gap: 58px;
    }

    .comparison::before {
        width: 82px;
        height: 82px;
    }

    .comparison::after {
        width: 66px;
        height: 48px;
        transform: translate(-50%, -50%) rotate(90deg);
    }

    .timeline {
        grid-template-columns: 1fr;
    }

    .team-card {
        flex-basis: 100%;
        flex-direction: column;
    }

    .team-photo {
        flex-basis: auto;
        width: 138px;
        height: 138px;
        min-height: 0;
    }

    .product-module-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-panel {
        min-height: auto;
    }

    .dashboard-panel img,
    .image-bleed img {
        min-height: 300px;
    }

    .contact-image {
        min-height: 360px;
    }

    .footer-bottom,
    .footer-bottom div {
        flex-direction: column;
    }
}
p.muted {
    margin-top: 10px;
    margin-bottom: 10px;
}
.linkedinicon a img {
    width: 24px;
}