:root {
    color-scheme: light;
}

.palette-navy-amber {
    --sk-primary: #213d70;
    --sk-primary-dark: #111426;
    --sk-primary-mid: #273d7b;
    --sk-indigo: #4438c7;
    --sk-bg: #f4f6f9;
    --sk-surface: #fff;
    --sk-text: #171d2a;
    --sk-muted: #66738a;
    --sk-accent: #ffb511;
    --sk-support: #3159b7;
}

.palette-ink-cyan {
    --sk-primary: #1c3b59;
    --sk-primary-dark: #0b1724;
    --sk-primary-mid: #24556f;
    --sk-indigo: #245e76;
    --sk-bg: #f2f6f8;
    --sk-surface: #fff;
    --sk-text: #17222e;
    --sk-muted: #617586;
    --sk-accent: #35bcd0;
    --sk-support: #e2a42b;
}

.palette-cobalt-lime {
    --sk-primary: #244d9b;
    --sk-primary-dark: #10213f;
    --sk-primary-mid: #315fb1;
    --sk-indigo: #316f94;
    --sk-bg: #f2f6f3;
    --sk-surface: #fff;
    --sk-text: #172033;
    --sk-muted: #617087;
    --sk-accent: #a9cf3b;
    --sk-support: #2a88a8;
}

.palette-burgundy-sand {
    --sk-primary: #7a3048;
    --sk-primary-dark: #2b1720;
    --sk-primary-mid: #93415e;
    --sk-indigo: #6d445d;
    --sk-bg: #f8f4ed;
    --sk-surface: #fff;
    --sk-text: #261c20;
    --sk-muted: #75656a;
    --sk-accent: #e2b45b;
    --sk-support: #527e86;
}

.palette-slate-orange {
    --sk-primary: #40566b;
    --sk-primary-dark: #17222c;
    --sk-primary-mid: #536c82;
    --sk-indigo: #3c6875;
    --sk-bg: #f3f5f6;
    --sk-surface: #fff;
    --sk-text: #18212a;
    --sk-muted: #65727d;
    --sk-accent: #f28c3a;
    --sk-support: #3c8d83;
}

.palette-violet-mint {
    --sk-primary: #60448b;
    --sk-primary-dark: #21172f;
    --sk-primary-mid: #7659a3;
    --sk-indigo: #5d518f;
    --sk-bg: #f6f4f9;
    --sk-surface: #fff;
    --sk-text: #211b2b;
    --sk-muted: #70657d;
    --sk-accent: #66c7a3;
    --sk-support: #c8903d;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--sk-bg);
    color: var(--sk-text);
    font-family: "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

button,
input {
    font: inherit;
    letter-spacing: 0;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
}

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

figure,
blockquote {
    margin: 0;
}

[hidden] {
    display: none !important;
}

.sk-shell {
    min-height: 100vh;
    overflow: clip;
    background: var(--sk-bg);
    color: var(--sk-text);
}

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

.sk-skip-link {
    position: fixed;
    z-index: 1000;
    top: 10px;
    left: 10px;
    padding: 10px 14px;
    color: #fff;
    background: #080b14;
    transform: translateY(-150%);
}

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

#sk-main {
    scroll-margin-top: 72px;
}

.sk-header {
    position: sticky;
    z-index: 50;
    top: 0;
    color: #fff;
    background: var(--sk-primary-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sk-header-row {
    min-height: 62px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.sk-brand {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: inherit;
    text-decoration: none;
}

.sk-brand-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 7px;
    color: #fff;
    background: #3389dc;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.34);
    font-size: 14px;
    font-weight: 800;
}

.sk-brand-copy {
    display: grid;
    line-height: 1.1;
}

.sk-brand-copy b {
    font-size: 17px;
    font-weight: 760;
}

.sk-brand-copy small {
    max-width: 180px;
    margin-top: 4px;
    overflow: hidden;
    color: #69aaf1;
    font-size: 10px;
    font-weight: 650;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sk-nav {
    min-width: 0;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.sk-noscript-nav {
    display: none;
}

.sk-nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0 13px;
    color: #e6e8f1;
    font-size: 14px;
    font-weight: 560;
    text-decoration: none;
    white-space: nowrap;
}

.sk-nav a:hover,
.sk-nav a:focus-visible,
.sk-nav a.is-current {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: var(--sk-accent);
    text-underline-offset: 8px;
}

.sk-user-link {
    min-width: 130px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 17px;
    border-radius: 22px;
    color: #172238;
    background: var(--sk-accent);
    font-weight: 760;
    text-decoration: none;
}

.sk-user-link:hover,
.sk-user-link:focus-visible {
    background: #ffc844;
}

.sk-user-link-copy {
    display: grid;
    line-height: 1.05;
}

.sk-user-link-copy small {
    max-width: 128px;
    margin-top: 3px;
    overflow: hidden;
    font-size: 10px;
    font-weight: 600;
    opacity: 0.72;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sk-menu-button {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    flex: 0 0 44px;
    display: none;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 6px;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.pc-faq-list summary {
    min-height: 44px;
    display: list-item;
}

.sk-menu-button span,
.sk-menu-button span::before,
.sk-menu-button span::after {
    width: 20px;
    height: 2px;
    display: block;
    background: currentColor;
    content: "";
}

.sk-menu-button span {
    position: relative;
}

.sk-menu-button span::before,
.sk-menu-button span::after {
    position: absolute;
    left: 0;
}

.sk-menu-button span::before {
    top: -6px;
}

.sk-menu-button span::after {
    top: 6px;
}

.sk-menu-button[aria-expanded="true"] span {
    background: transparent;
}

.sk-menu-button[aria-expanded="true"] span::before {
    top: 0;
    transform: rotate(45deg);
}

.sk-menu-button[aria-expanded="true"] span::after {
    top: 0;
    transform: rotate(-45deg);
}

.sk-announcement {
    position: relative;
    z-index: 9;
    padding: 10px 0;
    background: #fff;
}

.sk-announcement-row {
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 20px;
    border-radius: 28px;
    background: var(--sk-accent);
    box-shadow: 0 6px 18px rgba(188, 113, 0, 0.15);
}

.sk-announcement-icon {
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #18223a;
    background: rgba(255, 255, 255, 0.42);
}

.sk-announcement p {
    min-width: 0;
    flex: 1 1 auto;
    margin: 0;
    color: #252111;
    font-size: 15px;
}

.sk-announcement p b {
    margin-right: 10px;
}

.sk-announcement a {
    flex: 0 0 auto;
    font-size: 14px;
    font-weight: 750;
    text-decoration: none;
}

.sk-announcement button {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    border: 0;
    color: #6c4d00;
    background: transparent;
    font-size: 23px;
    cursor: pointer;
}

.sk-hero {
    min-height: 680px;
    display: grid;
    align-items: center;
    color: #fff;
    background: linear-gradient(115deg, #122641 0%, #213d70 58%, #3267bb 100%);
}

.sk-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
    gap: 78px;
    align-items: center;
    padding-block: 72px;
}

.sk-eyebrow {
    margin: 0 0 11px;
    color: var(--sk-accent);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.sk-hero h1 {
    margin: 0;
    font-size: clamp(44px, 4vw, 62px);
    font-weight: 780;
    line-height: 1.08;
    text-wrap: balance;
}

.sk-hero h2 {
    margin: 18px 0 0;
    color: #aebbd0;
    font-size: clamp(24px, 2.3vw, 34px);
    font-weight: 620;
    line-height: 1.3;
    text-wrap: balance;
}

.sk-hero-copy > p:not(.sk-eyebrow) {
    max-width: 610px;
    margin: 24px 0 0;
    color: #e0e8f5;
    font-size: 17px;
}

.sk-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
    margin: 24px 0 0;
    padding: 0;
    color: #c9d8eb;
    list-style: none;
    font-size: 14px;
}

.sk-hero-points li::before {
    margin-right: 7px;
    color: var(--sk-accent);
    content: "●";
    font-size: 9px;
}

.sk-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.sk-cta-host {
    margin: 12px 0 0;
    color: #b8cae3;
    font-size: 13px;
}

.sk-button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 21px;
    border: 1px solid transparent;
    border-radius: 25px;
    font-weight: 740;
    text-decoration: none;
}

.sk-button-primary {
    color: #152039;
    background: var(--sk-accent);
    border-color: var(--sk-accent);
}

.sk-button-primary:hover,
.sk-button-primary:focus-visible {
    background: #ffcb4c;
}

.sk-button-ghost {
    color: #fff;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.74);
}

.sk-button-ghost:hover,
.sk-button-ghost:focus-visible {
    background: rgba(255, 255, 255, 0.1);
}

.sk-external-disclosure {
    display: block;
    margin-top: 16px;
    color: #aabbd2;
    font-size: 12px;
}

.sk-visual {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #edf3fa;
    box-shadow: 0 22px 48px rgba(8, 20, 41, 0.2);
}

.sk-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sk-visual-hero,
.sk-visual-square {
    width: 100%;
    aspect-ratio: 1;
}

.sk-visual-hero {
    border: 8px solid rgba(255, 255, 255, 0.9);
}

/*
 * Article artwork is authored as a complete square composition.  Do not crop
 * it merely to make a shorter article header: that can remove faces, devices
 * or the lower provenance strip.  The square frame keeps the full asset
 * visible on every breakpoint and the domain plaque remains an overlay.
 */
.sk-shell .pc-article-hero {
    width: 100%;
    max-width: 760px;
    aspect-ratio: 1;
    background: #e6eef7;
}

.sk-shell .pc-article-hero > img {
    object-fit: contain;
    object-position: center;
}

.sk-domain-plaque {
    position: absolute;
    z-index: 2;
    right: 50%;
    bottom: 15px;
    max-width: calc(100% - 30px);
    padding: 8px 18px;
    overflow: hidden;
    border: 2px solid #748096;
    border-radius: 22px;
    color: #fff;
    background: #060910;
    box-shadow: 0 4px 0 rgba(255, 255, 255, 0.58), 0 9px 20px rgba(4, 8, 18, 0.28);
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 760;
    line-height: 1.1;
    text-overflow: ellipsis;
    white-space: nowrap;
    transform: translateX(50%);
}

.sk-metrics {
    position: relative;
    z-index: 4;
    margin-top: -34px;
}

.sk-metric-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    background: #fff;
    border: 1px solid #e0e5ec;
    border-radius: 6px;
    box-shadow: 0 16px 38px rgba(19, 39, 72, 0.13);
}

.sk-metric-grid article {
    min-width: 0;
    min-height: 124px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 23px;
    border-right: 1px solid #e4e8ee;
}

.sk-metric-grid article:last-child {
    border-right: 0;
}

.sk-metric-grid strong {
    color: var(--sk-support);
    font-size: 31px;
    line-height: 1;
}

.sk-metric-grid h2,
.sk-metric-grid p {
    margin: 0;
}

.sk-metric-grid h2 {
    font-size: 16px;
}

.sk-metric-grid p {
    margin-top: 4px;
    color: var(--sk-muted);
    font-size: 12px;
}

.sk-band {
    padding: 96px 0;
}

.sk-section-heading {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.sk-section-heading h2,
.sk-platform h2,
.sk-infrastructure h2,
.sk-method h2,
.sk-compliance h2,
.sk-vision h2,
.sk-final-cta h2 {
    margin: 0;
    font-size: clamp(32px, 3.2vw, 48px);
    font-weight: 760;
    line-height: 1.18;
}

.sk-section-heading > p:last-child,
.sk-lead {
    margin: 14px 0 0;
    color: var(--sk-muted);
}

.sk-heading-left {
    margin: 0;
    text-align: left;
}

.sk-section-heading-inline {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    text-align: left;
}

.sk-section-heading-inline > p {
    max-width: 480px;
}

.sk-update-section {
    padding-top: 106px;
    background: #fff;
}

.sk-update-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: 78px;
    align-items: start;
}

.sk-update-list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid #dce3ec;
}

.sk-update-list li {
    min-height: 64px;
    display: grid;
    grid-template-columns: 62px 54px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    border-bottom: 1px solid #dce3ec;
}

.sk-update-list .sk-update-step {
    font-variant-numeric: tabular-nums;
    font-weight: 720;
}

.sk-update-list span,
.sk-story-meta span {
    display: inline-flex;
    justify-content: center;
    padding: 3px 7px;
    border-radius: 3px;
    color: #764d00;
    background: #fff0c4;
    font-size: 11px;
    font-weight: 730;
}

.sk-update-list p {
    min-width: 0;
    margin: 0;
    font-size: 14px;
}

.sk-feature-section {
    background: #f4f6f9;
}

.sk-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.sk-feature-card {
    min-width: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e0e5ed;
    border-radius: 6px;
    box-shadow: 0 10px 28px rgba(24, 41, 69, 0.08);
}

.sk-card-visual {
    aspect-ratio: 1;
    border-radius: 0;
    box-shadow: none;
}

.sk-feature-card > div,
.sk-article-card > div {
    padding: 22px;
}

.sk-story-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: var(--sk-muted);
    font-size: 11px;
}

.sk-feature-card h3,
.sk-article-card h3 {
    margin: 11px 0 0;
    font-size: 21px;
    line-height: 1.38;
}

.sk-feature-card p:not(.sk-story-meta),
.sk-article-card p:not(.sk-story-meta) {
    margin: 11px 0 0;
    color: var(--sk-muted);
    font-size: 14px;
}

.sk-split {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
    gap: 80px;
    align-items: center;
}

.sk-split-visual-first {
    grid-template-columns: minmax(390px, 0.95fr) minmax(0, 1.05fr);
}

.sk-platform {
    color: #fff;
    background: #1d2e66;
}

.sk-platform .sk-lead,
.sk-infrastructure .sk-lead,
.sk-method .sk-lead,
.sk-vision .sk-lead {
    color: #cbd5eb;
}

.sk-capability-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin-top: 32px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.sk-capability-grid article {
    min-height: 168px;
    padding: 24px;
    background: #283b78;
}

.sk-capability-grid article > span {
    color: var(--sk-accent);
}

.sk-capability-grid h3,
.sk-capability-grid p {
    margin: 0;
}

.sk-capability-grid h3 {
    margin-top: 10px;
    font-size: 20px;
}

.sk-capability-grid p {
    margin-top: 7px;
    color: #cbd5eb;
    font-size: 14px;
}

.sk-timeline-section {
    background: #fff;
}

.sk-timeline {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin: 46px 0 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid #dbe2eb;
}

.sk-timeline li {
    min-width: 0;
    padding: 36px 32px 12px 0;
    border-right: 1px solid #dbe2eb;
}

.sk-timeline li:not(:first-child) {
    padding-left: 32px;
}

.sk-timeline li:last-child {
    border-right: 0;
}

.sk-timeline li > span {
    display: inline-grid;
    width: 38px;
    height: 26px;
    place-items: center;
    border-radius: 3px;
    color: #1f2432;
    background: var(--sk-accent);
    font-size: 12px;
    font-weight: 800;
}

.sk-timeline h3,
.sk-timeline p {
    margin: 0;
}

.sk-timeline h3 {
    margin-top: 23px;
    font-size: 23px;
}

.sk-timeline p {
    margin-top: 8px;
    color: var(--sk-muted);
}

.sk-league-section {
    color: #fff;
    background: #3f36c6;
}

.sk-league-section .sk-section-heading-inline > p {
    color: #d8d5ff;
}

.sk-league-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.sk-league-grid article {
    min-width: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
}

.sk-league-visual {
    aspect-ratio: 1;
    border-radius: 0;
    box-shadow: none;
}

.sk-league-grid article > div {
    padding: 20px;
}

.sk-league-grid article > div > span {
    display: inline-grid;
    width: 36px;
    height: 25px;
    place-items: center;
    border-radius: 3px;
    color: #171d2a;
    background: var(--sk-accent);
    font-size: 11px;
    font-weight: 800;
}

.sk-league-grid h3,
.sk-league-grid p {
    margin: 0;
}

.sk-league-grid h3 {
    margin-top: 18px;
    font-size: 19px;
}

.sk-league-grid p {
    min-height: 92px;
    margin-top: 8px;
    color: #e0defe;
    font-size: 13px;
}

.sk-league-grid a,
.sk-article-card a {
    display: inline-flex;
    margin-top: 15px;
    color: var(--sk-accent);
    font-size: 13px;
    font-weight: 750;
    text-decoration: none;
}

.sk-infrastructure {
    color: #fff;
    background: #172f58;
}

.sk-infrastructure-list {
    display: grid;
    gap: 1px;
    margin-top: 32px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.sk-infrastructure-list article {
    min-height: 110px;
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 20px;
    background: #203b6b;
}

.sk-infrastructure-list strong {
    color: var(--sk-accent);
    font-size: 20px;
}

.sk-infrastructure-list h3,
.sk-infrastructure-list p {
    margin: 0;
}

.sk-infrastructure-list h3 {
    font-size: 18px;
}

.sk-infrastructure-list p {
    margin-top: 5px;
    color: #c7d4e8;
    font-size: 13px;
}

.sk-method {
    color: #fff;
    background: #10182b;
}

.sk-method-layout {
    display: grid;
    grid-template-columns: minmax(390px, 0.92fr) minmax(0, 1.08fr);
    gap: 80px;
    align-items: center;
}

.sk-method-steps {
    margin: 32px 0 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.sk-method-steps li {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.sk-method-steps li > span {
    color: var(--sk-accent);
    font-weight: 800;
}

.sk-method-steps h3,
.sk-method-steps p {
    margin: 0;
}

.sk-method-steps h3 {
    font-size: 18px;
}

.sk-method-steps p {
    margin-top: 5px;
    color: #c6d0e0;
    font-size: 14px;
}

.sk-compliance {
    background: #fff;
}

.sk-trust-list {
    display: grid;
    gap: 18px;
    margin-top: 32px;
}

.sk-trust-list article {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 16px;
}

.sk-trust-list article > span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--sk-support);
    font-weight: 800;
}

.sk-trust-list h3,
.sk-trust-list p {
    margin: 0;
}

.sk-trust-list h3 {
    font-size: 18px;
}

.sk-trust-list p {
    margin-top: 4px;
    color: var(--sk-muted);
}

.sk-article-section {
    background: #f4f6f9;
}

.sk-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.sk-filters button {
    min-height: 38px;
    padding: 7px 14px;
    border: 1px solid #ccd5e1;
    border-radius: 4px;
    color: var(--sk-muted);
    background: #fff;
    cursor: pointer;
}

.sk-filters button:hover,
.sk-filters button:focus-visible,
.sk-filters button.is-active {
    color: #fff;
    background: var(--sk-primary);
    border-color: var(--sk-primary);
}

.sk-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

.sk-article-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.sk-article-card {
    min-width: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e0e5ed;
    border-radius: 6px;
}

.sk-article-visual {
    aspect-ratio: 1;
    border-radius: 0;
    box-shadow: none;
}

.sk-article-card h3 {
    min-height: 58px;
    font-size: 18px;
}

.sk-faq-section {
    background: #fff;
}

.sk-faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: 76px;
}

.sk-faq-list {
    border-top: 1px solid #d7dfe9;
}

.sk-faq-list details {
    border-bottom: 1px solid #d7dfe9;
}

.sk-faq-list summary {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 15px 4px;
    font-weight: 720;
    cursor: pointer;
    list-style: none;
}

.sk-faq-list summary::-webkit-details-marker {
    display: none;
}

.sk-faq-list summary::after {
    flex: 0 0 auto;
    color: var(--sk-support);
    content: "+";
    font-size: 24px;
}

.sk-faq-list details[open] summary::after {
    content: "−";
}

.sk-faq-list details p {
    margin: 0;
    padding: 0 4px 20px;
    color: var(--sk-muted);
}

.sk-vision {
    color: #fff;
    background: #4438c7;
}

.sk-vision .sk-button {
    margin-top: 28px;
}

.sk-testimonials {
    background: #f4f6f9;
}

.sk-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.sk-testimonial-grid article {
    min-height: 230px;
    padding: 30px;
    background: #fff;
    border: 1px solid #e0e5ed;
    border-radius: 6px;
}

.sk-stars {
    margin: 0;
    color: var(--sk-accent);
    letter-spacing: 0;
}

.sk-testimonial-grid blockquote {
    margin-top: 22px;
    font-size: 18px;
    line-height: 1.65;
}

.sk-testimonial-grid article > p:last-child {
    margin: 20px 0 0;
    color: var(--sk-muted);
    font-size: 13px;
}

.sk-final-cta {
    padding: 72px 0;
    color: #fff;
    background: var(--sk-primary-dark);
}

.sk-final-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px 50px;
    align-items: center;
}

.sk-final-inner > div > p:last-child {
    margin: 12px 0 0;
    color: #b8c4d8;
}

.sk-final-domain {
    grid-column: 1 / -1;
    margin: 0;
    color: #8595af;
    font-size: 12px;
}

.sk-footer {
    padding: 64px 0 28px;
    color: #dce4ef;
    background: #080d17;
}

.sk-footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(160px, 0.6fr));
    gap: 52px;
}

.sk-footer-brand {
    color: #fff;
}

.sk-footer-grid p {
    max-width: 470px;
    color: #91a0b5;
}

.sk-footer-grid h2 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 15px;
}

.sk-footer-grid > div:not(:first-child) {
    display: grid;
    align-content: start;
    gap: 8px;
}

.sk-footer-grid > div:not(:first-child) a {
    color: #aab8cb;
    font-size: 13px;
    text-decoration: none;
}

.sk-footer-grid a:hover,
.sk-footer-grid a:focus-visible {
    color: #fff;
}

.sk-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 28px;
    justify-content: space-between;
    margin-top: 42px;
    padding-top: 22px;
    color: #7f8da1;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 11px;
}

.sk-button:focus-visible,
.sk-user-link:focus-visible,
.sk-nav a:focus-visible,
.sk-menu-button:focus-visible,
.sk-announcement a:focus-visible,
.sk-announcement button:focus-visible,
.sk-league-grid a:focus-visible,
.sk-article-card a:focus-visible,
.sk-filters button:focus-visible,
.sk-faq-list summary:focus-visible {
    outline: 3px solid #0b63ce;
    outline-offset: 3px;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.92);
}

@media (max-width: 1120px) {
    .sk-container {
        width: min(100% - 32px, 1020px);
    }

    .sk-header-row {
        gap: 14px;
    }

    .sk-nav a {
        padding-inline: 8px;
        font-size: 12px;
    }

    .sk-user-link {
        min-width: 112px;
        font-size: 13px;
    }

    .sk-hero-grid,
    .sk-split,
    .sk-method-layout {
        gap: 50px;
    }

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

@media (max-width: 860px) {
    .sk-noscript-nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1px;
        padding: 8px 16px;
        background: #0c1120;
        border-top: 1px solid rgba(255, 255, 255, 0.14);
    }

    .sk-noscript-nav a {
        min-height: 44px;
        display: flex;
        align-items: center;
        padding: 8px 12px;
        color: #fff;
        text-decoration: none;
        background: rgba(255, 255, 255, 0.06);
    }

    .sk-header-row {
        min-height: 62px;
    }

    .sk-nav {
        position: absolute;
        top: 62px;
        right: 16px;
        left: 16px;
        display: none;
        align-items: stretch;
        padding: 10px;
        background: #0c1120;
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
    }

    .sk-nav.is-open {
        display: grid;
    }

    .sk-nav a {
        min-height: 44px;
        font-size: 14px;
    }

    .sk-user-link {
        margin-left: auto;
    }

    .sk-menu-button {
        display: grid;
    }

    .sk-announcement p {
        font-size: 13px;
    }

    .sk-announcement a {
        display: none;
    }

    .sk-hero {
        min-height: 0;
    }

    .sk-hero-grid,
    .sk-split,
    .sk-split-visual-first,
    .sk-method-layout {
        grid-template-columns: 1fr;
    }

    .sk-hero-grid {
        gap: 42px;
        padding-block: 58px;
    }

    .sk-hero-copy {
        max-width: 680px;
    }

    .sk-visual-hero,
    .sk-visual-square {
        width: min(100%, 620px);
        justify-self: center;
    }

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

    .sk-metric-grid article:nth-child(2) {
        border-right: 0;
    }

    .sk-metric-grid article:nth-child(-n+2) {
        border-bottom: 1px solid #e4e8ee;
    }

    .sk-update-layout,
    .sk-faq-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .sk-feature-grid,
    .sk-article-grid,
    .sk-testimonial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .sk-timeline li,
    .sk-timeline li:not(:first-child) {
        padding: 26px 0;
        border-right: 0;
        border-bottom: 1px solid #dbe2eb;
    }

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

    .sk-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px;
    }

    .sk-footer-grid > div:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    body {
        font-size: 15px;
    }

    .sk-container {
        width: calc(100% - 28px);
    }

    .sk-brand-copy b {
        max-width: 110px;
        overflow: hidden;
        font-size: 15px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .sk-brand-copy small {
        display: none;
    }

    .sk-user-link {
        min-width: 0;
        min-height: 44px;
        padding-inline: 12px;
        font-size: 11px;
    }

    .sk-user-link > span[aria-hidden] {
        display: none;
    }

    .sk-user-link .sk-user-link-copy {
        display: block;
    }

    .sk-user-link-copy small {
        display: none;
    }

    .sk-announcement {
        padding-block: 7px;
    }

    .sk-announcement-row {
        padding-inline: 12px;
        border-radius: 6px;
    }

    .sk-announcement-icon {
        display: none;
    }

    .sk-announcement p b {
        display: block;
        margin-right: 0;
    }

    .sk-hero h1 {
        font-size: clamp(34px, 10vw, 40px);
    }

    .sk-hero h2 {
        font-size: 23px;
    }

    .sk-hero-copy > p:not(.sk-eyebrow) {
        font-size: 15px;
    }

    .sk-hero-points {
        display: grid;
    }

    .sk-button {
        min-height: 44px;
        padding-inline: 16px;
        font-size: 13px;
    }

    .sk-domain-plaque {
        bottom: 10px;
        max-width: calc(100% - 20px);
        padding: 6px 12px;
        font-size: 10px;
    }

    .sk-metrics {
        margin-top: -20px;
    }

    .sk-metric-grid {
        grid-template-columns: 1fr;
    }

    .sk-metric-grid article,
    .sk-metric-grid article:nth-child(2) {
        min-height: 92px;
        padding: 17px;
        border-right: 0;
        border-bottom: 1px solid #e4e8ee;
    }

    .sk-metric-grid article:last-child {
        border-bottom: 0;
    }

    .sk-band {
        padding-block: 68px;
    }

    .sk-section-heading-inline {
        display: block;
    }

    .sk-section-heading h2,
    .sk-platform h2,
    .sk-infrastructure h2,
    .sk-method h2,
    .sk-compliance h2,
    .sk-vision h2,
    .sk-final-cta h2 {
        font-size: 30px;
    }

    .sk-update-list li {
        grid-template-columns: 50px 46px minmax(0, 1fr);
        gap: 7px;
    }

    .sk-feature-grid,
    .sk-article-grid,
    .sk-testimonial-grid,
    .sk-league-grid,
    .sk-capability-grid {
        grid-template-columns: 1fr;
    }

    .sk-league-grid p {
        min-height: 0;
    }

    .sk-filters {
        margin-top: 22px;
    }

    .sk-final-inner {
        grid-template-columns: 1fr;
    }

    .sk-final-inner .sk-button {
        justify-self: start;
    }

    .sk-final-domain {
        grid-column: auto;
    }

    .sk-footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .sk-footer-grid > div:first-child {
        grid-column: auto;
    }

    .sk-footer-bottom {
        display: grid;
    }
}

@media (max-width: 360px) {
    .sk-header-row {
        gap: 8px;
    }

    .sk-brand,
    .sk-brand-copy,
    .sk-user-link-copy {
        min-width: 0;
    }

    .sk-brand-mark {
        flex: 0 0 38px;
    }

    .sk-user-link {
        max-width: 78px;
        overflow: hidden;
    }

    .sk-user-link-copy {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

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