
.sw-page {
    --sw-brand-glow: rgba(0, 133, 111, 0.2);
    --sw-text: #1a1a1a;
    --sw-text-soft: #5a756e;
    --sw-max: min(1680px, 100%);
    --sw-gutter: clamp(20px, 4vw, 80px);
    --sw-radius: 16px;
    --sw-radius-lg: 24px;
    width: 100%;
    overflow-x: clip;
    color: var(--sw-text);
    background: #fff;
}

.sw-container {
    max-width: var(--sw-max);
    margin: 0 auto;
    padding-left: var(--sw-gutter);
    padding-right: var(--sw-gutter);
    box-sizing: border-box;
}

.sw-headline {
    margin: 0 0 16px;
    font-size: clamp(1.75rem, 3.2vw, 2.625rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.sw-lead {
    margin: 0;
    font-size: clamp(1rem, 1.15vw, 1.125rem);
    line-height: 1.85;
    color: var(--sw-text-soft);
}

.sw-kicker {
    margin: 0 0 10px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sw-brand);
}

.sw-section__head {
    max-width: 760px;
    margin: 0 auto clamp(40px, 5vw, 56px);
    text-align: center;
}

.sw-section {
    padding: clamp(56px, 7vw, 96px) 0;
}

/* ── Hero ─────────────────────────────────────────────────────────── */

.sw-hero {
    position: relative;
    min-height: clamp(480px, 70vh, 720px);
    display: flex;
    align-items: flex-end;
    padding-bottom: clamp(64px, 8vw, 100px);
    overflow: hidden;
}

.sw-hero__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, var(--rm-color-brand-800) 0%, var(--rm-color-brand-dark) 42%, var(--rm-color-brand) 100%);
}

.sw-hero__mesh {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 100%);
}

.sw-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: sw-hero-orb 8s ease-in-out infinite;
}

.sw-hero__orb--1 {
    width: 320px;
    height: 320px;
    top: -80px;
    right: 10%;
    background: rgba(110, 231, 199, 0.25);
}

.sw-hero__orb--2 {
    width: 240px;
    height: 240px;
    bottom: 10%;
    left: 5%;
    background: rgba(0, 168, 138, 0.2);
    animation-delay: -3s;
}

@keyframes sw-hero-orb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(12px, -16px) scale(1.06); }
}

.sw-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg, rgba(0, 45, 38, 0.88) 0%, rgba(0, 107, 89, 0.72) 50%, rgba(0, 133, 111, 0.45) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
}

.sw-hero__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 20% 80%, rgba(110, 231, 199, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.sw-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 780px;
}

.sw-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 24px;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.65);
}

.sw-breadcrumb a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
}

.sw-breadcrumb a:hover { color: var(--sw-brand-bright); }

.sw-hero__eyebrow {
    margin: 0 0 16px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: var(--sw-brand-bright);
}

.sw-hero__title {
    margin: 0 0 20px;
    font-size: clamp(2.25rem, 5.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #fff;
}

.sw-hero__title-accent {
    background: linear-gradient(135deg, #fff 0%, var(--sw-brand-bright) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sw-hero__subtitle {
    margin: 0 0 32px;
    max-width: 640px;
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
}

.sw-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* Hero actions — rm-btn (design-system/components.css) */

.sw-hero a.rm-btn,
.sw-hero a.rm-btn:visited {
    text-decoration: none;
}

/* ── Stats ────────────────────────────────────────────────────────── */

.sw-stats {
    position: relative;
    z-index: 3;
    margin-top: -44px;
    padding-bottom: clamp(24px, 3vw, 40px);
}

.sw-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0;
    padding: 0;
    list-style: none;
    background: #fff;
    border-radius: var(--sw-radius-lg);
    box-shadow: 0 20px 60px rgba(0, 77, 65, 0.12);
    overflow: hidden;
}

.sw-stats__item {
    padding: clamp(24px, 3vw, 36px) 20px;
    text-align: center;
    border-right: 1px solid rgba(0, 133, 111, 0.1);
}

.sw-stats__item:last-child { border-right: none; }

.sw-stats__value {
    display: block;
    margin-bottom: 6px;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--sw-brand);
}

.sw-stats__label {
    font-size: 0.875rem;
    color: var(--sw-text-soft);
}

/* ── Overview ─────────────────────────────────────────────────────── */

.sw-section--overview {
    background: linear-gradient(180deg, #fff 0%, var(--sw-brand-muted) 100%);
}

.sw-overview {
    display: flex;
    flex-direction: column;
    gap: clamp(40px, 5vw, 56px);
}

.sw-overview__header {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.sw-overview__header .sw-lead {
    max-width: 640px;
    margin-inline: auto;
}

.sw-pillars {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 2vw, 24px);
}

.sw-pillars::before {
    content: '';
    position: absolute;
    top: 72px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 133, 111, 0.18) 15%, rgba(0, 133, 111, 0.18) 85%, transparent);
    pointer-events: none;
}

.sw-pillar {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: clamp(24px, 2.5vw, 32px) clamp(16px, 1.8vw, 22px);
    background: linear-gradient(180deg, #fff 0%, rgba(238, 246, 243, 0.45) 100%);
    border-radius: var(--sw-radius-lg);
    border: 1px solid rgba(0, 133, 111, 0.1);
    box-shadow: 0 8px 32px rgba(0, 77, 65, 0.06);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.sw-pillar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sw-brand-bright), var(--sw-brand));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.35s ease;
}

.sw-pillar:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 133, 111, 0.22);
    box-shadow: 0 20px 48px var(--sw-brand-glow);
}

.sw-pillar:hover::after {
    transform: scaleX(1);
}

.sw-pillar__index {
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: rgba(0, 133, 111, 0.08);
    user-select: none;
}

.sw-pillar__icon {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sw-brand);
    background: #fff;
    border-radius: 50%;
    border: 1px solid rgba(0, 133, 111, 0.14);
    box-shadow: 0 6px 20px rgba(0, 133, 111, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sw-pillar:hover .sw-pillar__icon {
    transform: scale(1.06);
    box-shadow: 0 10px 28px rgba(0, 133, 111, 0.2);
}

.sw-pillar__icon svg { width: 28px; height: 28px; }

.sw-pillar__title {
    position: relative;
    z-index: 1;
    margin: 0 0 10px;
    font-size: clamp(0.9375rem, 1.05vw, 1.0625rem);
    font-weight: 700;
    line-height: 1.35;
}

.sw-pillar__desc {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: clamp(0.8125rem, 0.9vw, 0.875rem);
    line-height: 1.7;
    color: var(--sw-text-soft);
}

/* ── Modules ──────────────────────────────────────────────────────── */

.sw-section--modules {
    background: #fff;
}

.sw-modules__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: clamp(28px, 4vw, 40px);
}

.sw-module-tab {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--sw-text-soft);
    background: var(--sw-brand-muted);
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.sw-module-tab__abbr {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    padding: 2px 8px;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--sw-brand);
    background: #fff;
    border-radius: 999px;
}

.sw-module-tab__name {
    white-space: nowrap;
}

.sw-module-tab:hover {
    color: var(--sw-brand);
    border-color: rgba(0, 133, 111, 0.2);
}

.sw-module-tab.is-active {
    color: #fff;
    background: var(--sw-brand);
    box-shadow: 0 6px 24px var(--sw-brand-glow);
}

.sw-module-tab.is-active .sw-module-tab__abbr {
    color: var(--sw-brand);
    background: rgba(255, 255, 255, 0.95);
}

.sw-module-panel__abbr {
    display: inline-block;
    margin: 0 0 8px;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #fff;
    background: var(--sw-brand);
    border-radius: 999px;
}

.sw-module-panel--dark .sw-module-panel__abbr {
    background: var(--sw-brand-light);
    color: var(--sw-brand-dark);
}

.sw-module-panel {
    padding: clamp(28px, 4vw, 40px);
    background: var(--sw-brand-muted);
    border-radius: var(--sw-radius-lg);
    border: 1px solid rgba(0, 133, 111, 0.12);
}

.sw-module-panel--dark {
    background: linear-gradient(145deg, #0a1628 0%, #0d2137 100%);
    border-color: rgba(0, 168, 138, 0.2);
    color: #fff;
}

.sw-module-panel--dark .sw-module-panel__tagline,
.sw-module-panel--dark .sw-module-panel__points li,
.sw-module-panel--dark .sw-module-panel__label,
.sw-module-panel--dark .sw-steps__item,
.sw-module-panel--dark .sw-highlight p {
    color: rgba(255, 255, 255, 0.75);
}

.sw-module-panel--dark .sw-module-panel__title,
.sw-module-panel--dark .sw-highlight h4 {
    color: #fff;
}

.sw-module-panel--dark .sw-highlight {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}

.sw-module-panel--dark .sw-steps__dot {
    background: var(--sw-brand-light);
    color: #fff;
}

.sw-module-panel__header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.sw-module-panel__icon {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sw-brand);
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0, 133, 111, 0.12);
}

.sw-module-panel__icon svg {
    width: 36px;
    height: 36px;
}

.sw-module-panel--dark .sw-module-panel__icon {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.sw-module-panel__title {
    margin: 0 0 6px;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
}

.sw-module-panel__tagline {
    margin: 0;
    font-size: 1rem;
    color: var(--sw-brand-deep);
    font-weight: 500;
}

.sw-module-panel--dark .sw-module-panel__tagline { color: var(--sw-brand-bright); }

.sw-module-panel__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(20px, 3vw, 32px);
    align-items: start;
}

.sw-module-panel__main {
    min-width: 0;
}

.sw-module-panel__highlights {
    min-width: 0;
    align-self: start;
}

.sw-module-panel__points {
    margin: 16px 0 20px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.sw-module-panel__points li {
    position: relative;
    padding-left: 20px;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--sw-text-soft);
}

.sw-module-panel__points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sw-brand);
}

.sw-module-panel__flow {
    margin: 0;
}

.sw-module-panel__label {
    margin: 0 0 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sw-brand);
}

.sw-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sw-steps__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    font-size: 0.8125rem;
    font-weight: 500;
    background: #fff;
    border-radius: 999px;
    border: 1px solid rgba(0, 133, 111, 0.15);
}

.sw-module-panel--dark .sw-steps__item {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

.sw-steps__dot {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6875rem;
    font-weight: 700;
    color: #fff;
    background: var(--sw-brand);
    border-radius: 50%;
}

.sw-highlights {
    display: grid;
    gap: 10px;
}

.sw-highlight {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 14px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(0, 133, 111, 0.1);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.sw-highlight:hover {
    border-color: rgba(0, 133, 111, 0.22);
    box-shadow: 0 6px 20px var(--sw-brand-glow);
}

.sw-highlight__icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--sw-brand);
    background: var(--sw-brand-muted);
    border-radius: 8px;
}

.sw-highlight h4 {
    margin: 0 0 4px;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.35;
}

.sw-highlight p {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: var(--sw-text-soft);
}

.sw-module-panel--dark .sw-highlight__icon {
    color: #fff;
    background: rgba(0, 168, 138, 0.35);
}

/* ── Ecosystem ────────────────────────────────────────────────────── */

.sw-section--ecosystem {
    background: linear-gradient(180deg, var(--sw-brand-muted) 0%, #fff 100%);
}

.sw-ecosystem {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
    gap: clamp(28px, 3.5vw, 44px);
    align-items: stretch;
}

.sw-ecosystem__diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
    padding: clamp(32px, 4vw, 48px);
    background:
        radial-gradient(ellipse 90% 70% at 50% 50%, rgba(110, 231, 199, 0.14) 0%, transparent 68%),
        radial-gradient(ellipse 60% 50% at 50% 50%, rgba(0, 133, 111, 0.05) 0%, transparent 70%),
        linear-gradient(180deg, #f8fcfb 0%, #fff 100%);
    border-radius: var(--sw-radius-lg);
    border: 1px solid rgba(0, 133, 111, 0.12);
    box-shadow:
        0 20px 56px rgba(0, 133, 111, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    overflow: visible;
}

/* RMS-Cloud segmented ring diagram */
.sw-eco-orbit {
    --sw-orbit-chip-offset: clamp(19px, 5.25%, 22px);
    position: relative;
    width: min(100%, 400px);
    aspect-ratio: 1;
    margin: 0 auto;
    flex-shrink: 0;
}

.sw-eco-orbit__stage {
    position: absolute;
    inset: 0;
}

.sw-eco-orbit__svg {
    display: block;
    width: 100%;
    height: 100%;
}

.sw-eco-orbit__segment {
    opacity: 0;
    transform-origin: 200px 200px;
    animation: sw-eco-seg-in 0.8s ease forwards;
    animation-delay: var(--sw-seg-delay, 0s);
}

.sw-eco-orbit__flow {
    transform-origin: 200px 200px;
    opacity: 0.85;
    animation: sw-eco-flow 14s linear infinite;
}

.sw-eco-orbit__hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 38%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sw-eco-orbit__hub-glow {
    position: absolute;
    inset: -18%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 133, 111, 0.28) 0%, rgba(110, 231, 199, 0.08) 45%, transparent 72%);
    animation: sw-eco-hub-glow 4s ease-in-out infinite;
}

.sw-eco-orbit__hub-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(0, 133, 111, 0.22);
}

.sw-eco-orbit__hub-ring--1 {
    animation: sw-eco-pulse 3.2s ease-in-out infinite;
}

.sw-eco-orbit__hub-ring--2 {
    inset: -14%;
    border-color: rgba(110, 231, 199, 0.4);
    animation: sw-eco-pulse 3.2s ease-in-out infinite 0.5s;
}

.sw-eco-orbit__hub-core {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    width: 90%;
    height: 90%;
    padding: 0 10px;
    text-align: center;
    border-radius: 50%;
    background: linear-gradient(155deg, var(--sw-brand-light) 0%, var(--sw-brand) 42%, var(--sw-brand-deep) 100%);
    box-shadow:
        0 16px 44px rgba(0, 133, 111, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        inset 0 -8px 20px rgba(0, 77, 65, 0.22);
}

.sw-eco-orbit__hub-brand {
    display: block;
    font-size: clamp(0.75rem, 2.1vw, 0.9375rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.04em;
    color: #fff;
}

.sw-eco-orbit__hub-product {
    display: block;
    font-size: clamp(0.625rem, 1.6vw, 0.75rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.88);
}

.sw-eco-orbit__nodes {
    position: absolute;
    inset: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sw-eco-orbit__node {
    position: absolute;
    top: var(--sw-node-y);
    left: var(--sw-node-x);
    width: max-content;
    max-width: 128px;
    transform:
        translate(-50%, -50%)
        rotate(var(--sw-orbit-angle))
        translateY(calc(-1 * var(--sw-orbit-chip-offset, 24px)))
        rotate(calc(-1 * var(--sw-orbit-angle)));
    transform-origin: center center;
    opacity: 0;
    animation: sw-eco-node-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(0.35s + var(--sw-orbit-delay, 0s));
}

.sw-eco-orbit__chip {
    display: flex;
    align-items: center;
    gap: 7px;
    width: max-content;
    max-width: 128px;
    padding: 7px 10px 7px 7px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 133, 111, 0.14);
    border-radius: 999px;
    box-shadow:
        0 10px 28px rgba(0, 77, 65, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.3s ease;
}

.sw-eco-orbit__chip:hover,
.sw-eco-orbit__node.is-active .sw-eco-orbit__chip {
    transform: scale(1.06) translateY(-2px);
    border-color: rgba(0, 133, 111, 0.35);
    box-shadow: 0 16px 40px var(--sw-brand-glow);
}

.sw-eco-orbit__chip-icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: var(--sw-brand);
    background: linear-gradient(180deg, #fff 0%, var(--sw-brand-muted) 100%);
    border-radius: 50%;
    border: 1px solid rgba(0, 133, 111, 0.12);
    transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.sw-eco-orbit__chip-icon svg {
    width: 18px;
    height: 18px;
}

.sw-eco-orbit__chip:hover .sw-eco-orbit__chip-icon,
.sw-eco-orbit__node.is-active .sw-eco-orbit__chip-icon {
    color: #fff;
    background: linear-gradient(145deg, var(--sw-brand-light) 0%, var(--sw-brand) 100%);
    border-color: transparent;
}

.sw-eco-orbit__chip-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
    min-width: 0;
}

.sw-eco-orbit__chip-abbr {
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.1;
    color: var(--sw-brand-dark);
}

.sw-eco-orbit__chip-short {
    font-size: 0.625rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--sw-text-soft);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 72px;
}

.sw-eco-orbit__chip:hover .sw-eco-orbit__chip-short,
.sw-eco-orbit__node.is-active .sw-eco-orbit__chip-short {
    color: var(--sw-brand-deep);
}

@keyframes sw-eco-flow {
    to { transform: rotate(360deg); }
}

@keyframes sw-eco-pulse {
    0%, 100% { transform: scale(1); opacity: 0.55; }
    50% { transform: scale(1.06); opacity: 1; }
}

@keyframes sw-eco-hub-glow {
    0%, 100% { transform: scale(1); opacity: 0.75; }
    50% { transform: scale(1.05); opacity: 1; }
}

@keyframes sw-eco-seg-in {
    from { opacity: 0; transform: scale(0.94); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes sw-eco-node-in {
    from {
        opacity: 0;
        transform:
            translate(-50%, -50%)
            rotate(var(--sw-orbit-angle))
            translateY(calc(-1 * var(--sw-orbit-chip-offset, 24px) + 12px))
            rotate(calc(-1 * var(--sw-orbit-angle)))
            scale(0.9);
    }
    to {
        opacity: 1;
        transform:
            translate(-50%, -50%)
            rotate(var(--sw-orbit-angle))
            translateY(calc(-1 * var(--sw-orbit-chip-offset, 24px)))
            rotate(calc(-1 * var(--sw-orbit-angle)))
            scale(1);
    }
}

.sw-ecosystem__benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-self: stretch;
    width: 100%;
    padding: 4px 0;
    counter-reset: sw-eco-benefit;
}

.sw-eco-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100%;
    min-height: 132px;
    padding: 24px 22px 22px;
    background: #fff;
    border-radius: var(--sw-radius);
    border: 1px solid rgba(0, 133, 111, 0.1);
    box-shadow: 0 4px 20px rgba(0, 77, 65, 0.05);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    overflow: hidden;
}

.sw-eco-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sw-brand-bright), var(--sw-brand));
    opacity: 0.75;
    transition: opacity 0.25s ease;
}

.sw-eco-card::after {
    content: counter(sw-eco-benefit, decimal-leading-zero);
    counter-increment: sw-eco-benefit;
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 1.625rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    color: rgba(0, 133, 111, 0.1);
    pointer-events: none;
}

.sw-eco-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 133, 111, 0.2);
    box-shadow: 0 12px 32px var(--sw-brand-glow);
}

.sw-eco-card:hover::before {
    opacity: 1;
}

.sw-eco-card h3 {
    margin: 0;
    padding-right: 36px;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--sw-brand-dark);
}

.sw-eco-card p {
    margin: 0;
    flex: 1;
    font-size: 0.8125rem;
    line-height: 1.65;
    color: var(--sw-text-soft);
}

/* ── Advantages ─────────────────────────────────────────────────── */

.sw-advantages {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.sw-adv-card {
    padding: 24px 18px;
    text-align: center;
    background: #fff;
    border-radius: var(--sw-radius);
    border: 1px solid rgba(0, 133, 111, 0.12);
    box-shadow: 0 4px 20px rgba(0, 77, 65, 0.05);
    transition: transform 0.25s, box-shadow 0.25s;
}

.sw-adv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px var(--sw-brand-glow);
}

.sw-adv-card__icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sw-brand);
    background: var(--sw-brand-muted);
    border-radius: 50%;
}

.sw-adv-card__icon svg { width: 28px; height: 28px; }

.sw-adv-card h3 {
    margin: 0 0 8px;
    font-size: 0.9375rem;
    font-weight: 700;
}

.sw-adv-card p {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: var(--sw-text-soft);
}

.sw-iot {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
    padding: clamp(28px, 4vw, 40px);
    background: var(--sw-brand-muted);
    border-radius: var(--sw-radius-lg);
    border: 1px solid rgba(0, 133, 111, 0.12);
}

.sw-iot__title {
    margin: 0 0 10px;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
}

.sw-iot__lead {
    margin: 0 0 16px;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--sw-text-soft);
}

.sw-iot__points {
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.sw-iot__points li {
    position: relative;
    padding-left: 18px;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--sw-text-soft);
}

.sw-iot__points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sw-brand);
}

.sw-iot__features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sw-iot__features li {
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--sw-brand-dark);
    background: #fff;
    border: 1px solid rgba(0, 133, 111, 0.2);
    border-radius: 999px;
}

.sw-iot__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sw-iot-diagram {
    width: 100%;
}

.sw-iot-diagram__svg {
    display: block;
    width: 100%;
    height: auto;
}

.sw-iot-diagram__labels {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.sw-iot-diagram__labels li {
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--sw-brand-dark);
    background: #fff;
    border: 1px solid rgba(0, 133, 111, 0.2);
    border-radius: 999px;
}

/* ── Services ───────────────────────────────────────────────────── */

.sw-section--services {
    background: #fff;
}

.sw-services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.sw-service-card {
    padding: 28px 22px;
    text-align: center;
    background: var(--sw-brand-muted);
    border-radius: var(--sw-radius);
    border: 1px solid rgba(0, 133, 111, 0.1);
    transition: transform 0.25s, box-shadow 0.25s;
}

.sw-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px var(--sw-brand-glow);
    background: #fff;
}

.sw-service-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--sw-brand);
    border-radius: 50%;
}

.sw-service-card__icon svg { width: 28px; height: 28px; }

.sw-service-card h3 {
    margin: 0 0 10px;
    font-size: 1.0625rem;
    font-weight: 700;
}

.sw-service-card p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--sw-text-soft);
}

.sw-services__visual {
    margin: 0;
    border-radius: var(--sw-radius-lg);
    overflow: hidden;
    box-shadow: 0 12px 40px var(--sw-brand-glow);
}

.sw-services__visual img {
    display: block;
    width: 100%;
    height: auto;
}

/* ── Cases ──────────────────────────────────────────────────────── */

.sw-section--cases {
    background: linear-gradient(180deg, var(--sw-brand-muted) 0%, #fff 100%);
}

.sw-cases {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 3vw, 28px);
}

.sw-case {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: var(--sw-radius-lg);
    overflow: hidden;
    border: 1px solid rgba(0, 133, 111, 0.1);
    box-shadow: 0 8px 32px rgba(0, 77, 65, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.sw-case:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px var(--sw-brand-glow);
}

.sw-case--featured {
    grid-column: 1 / -1;
    flex-direction: row;
}

.sw-case--featured .sw-case__media {
    flex: 0 0 48%;
    aspect-ratio: auto;
    min-height: 280px;
}

.sw-case--featured .sw-case__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(28px, 4vw, 40px);
}

.sw-case__media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--sw-brand-muted);
}

.sw-case__media--logo {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: auto;
    min-height: 140px;
    padding: 28px 32px;
    background: #fff;
}

.sw-case__media--logo img {
    width: auto;
    max-width: min(220px, 70%);
    max-height: 80px;
    height: auto;
    object-fit: contain;
}

.sw-case__media--placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sw-case--featured .sw-case__media--logo {
    min-height: 200px;
}

.sw-case__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sw-case__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: var(--sw-brand);
    border-radius: 999px;
}

.sw-case__body {
    padding: 22px 24px 28px;
}

.sw-case__subtitle {
    margin: 0 0 6px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--sw-brand);
}

.sw-case__title {
    margin: 0 0 10px;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.35;
}

.sw-case__desc {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--sw-text-soft);
}

/* ── Reveal ─────────────────────────────────────────────────────── */

[data-sw-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

/* ── Responsive ─────────────────────────────────────────────────── */

@media (max-width: 1200px) {
    .sw-advantages { grid-template-columns: repeat(3, 1fr); }
    .sw-advantages .sw-adv-card:nth-child(4),
    .sw-advantages .sw-adv-card:nth-child(5) {
        grid-column: span 1;
    }
}

@media (max-width: 1200px) {
    .sw-pillars { grid-template-columns: repeat(2, 1fr); }
    .sw-pillars::before { display: none; }
}

@media (max-width: 1024px) {
    .sw-ecosystem,
    .sw-iot { grid-template-columns: 1fr; }

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

    .sw-services { grid-template-columns: repeat(2, 1fr); }
    .sw-case--featured { flex-direction: column; }
    .sw-case--featured .sw-case__media { flex: none; min-height: auto; }
}

@media (max-width: 768px) {
    .sw-stats__grid { grid-template-columns: repeat(2, 1fr); }
    .sw-stats__item:nth-child(2) { border-right: none; }
    .sw-stats__item:nth-child(1),
    .sw-stats__item:nth-child(2) { border-bottom: 1px solid rgba(0, 133, 111, 0.1); }

    .sw-modules__tabs {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
    }

    .sw-module-tab { flex-shrink: 0; }

    .sw-ecosystem__benefits {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        min-height: auto;
    }

    .sw-eco-card { min-height: auto; }

    .sw-iot__visual { justify-content: stretch; }
    .sw-ecosystem__diagram { min-height: 360px; padding: 20px 12px; }
    .sw-eco-orbit { width: min(100%, 340px); --sw-orbit-chip-offset: 16px; }
    .sw-eco-orbit__node { max-width: 112px; }
    .sw-eco-orbit__chip { max-width: 112px; }
    .sw-eco-orbit__chip-short { max-width: 58px; }
    .sw-eco-orbit__chip { padding: 7px 9px 7px 7px; gap: 6px; }
    .sw-eco-orbit__chip-icon { width: 30px; height: 30px; }
    .sw-eco-orbit__chip-short { font-size: 0.5625rem; }
    .sw-pillars { grid-template-columns: 1fr; }
    .sw-advantages { grid-template-columns: 1fr 1fr; }
    .sw-services { grid-template-columns: 1fr; }
    .sw-cases { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .sw-stats__grid { grid-template-columns: 1fr; }
    .sw-stats__item { border-right: none; border-bottom: 1px solid rgba(0, 133, 111, 0.1); }
    .sw-advantages { grid-template-columns: 1fr; }
}

.btn-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  background: var(--rm-color-brand);
  border-radius: var(--rm-radius-pill);
  color: #fff;
  font-weight: var(--rm-font-medium);
  font-size: var(--rm-text-sm);
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-brand:hover {
  background: #fff;
  transform: translateY(-1px);
  color: var(--rm-color-brand);
  box-shadow: var(--rm-shadow-md);
}

