body {
    font-family: Arial, "Microsoft JhengHei", "PingFang TC", "Noto Sans TC", sans-serif;
    background-color: #ffffff;
    margin: 0;
    padding-top: 0;
}

body > header {
    display: block;
    margin: 0;
    padding: 0;
    min-height: 0;
}

body > header > .bg-white {
    top: 0;
    margin-top: 0;
}

:root {
    --fun-orange: #F6821F;
    --fun-orange-deep: #D96C14;
    --fun-orange-dark: #B45309;
    --fun-border: #E5E7EB;
    --fun-text: #0F172A;
    --fun-muted: #64748B;
    --fun-soft-bg: #F8FAFC;
    --fun-section-line: #E2E8F0;
}

.home-hero-section {
    position: relative;
    min-height: clamp(620px, 76vh, 760px);
    overflow: hidden;
    background: var(--fun-soft-bg);
    color: var(--fun-text);
    border-bottom: 0;
}

.home-hero-media {
    position: absolute;
    inset: 0;
    background-image: url("/web/funidc/static/images/hero-datacenter-v80.jpg");
    background-image: image-set(url("/web/funidc/static/images/hero-datacenter-v80.webp") type("image/webp"), url("/web/funidc/static/images/hero-datacenter-v80.jpg") type("image/jpeg"));
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    pointer-events: none;
}

.home-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.74) 34%, rgba(255, 255, 255, 0.50) 58%, rgba(255, 255, 255, 0.30) 100%);
    pointer-events: none;
}

.home-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: center;
    width: min(1280px, calc(100vw - 48px));
    min-height: clamp(620px, 76vh, 760px);
    margin: 0 auto;
    padding: 74px 32px 88px;
}

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

.home-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: #465973;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
}

.home-hero-kicker::before {
    content: "";
    width: 38px;
    height: 3px;
    border-radius: 999px;
    background: var(--fun-orange);
}

.home-hero-copy h1 {
    margin: 0;
    color: var(--fun-text);
    font-size: 62px;
    font-weight: 900;
    line-height: 1.07;
    letter-spacing: 0;
}

.home-hero-copy h1 span {
    color: var(--fun-orange);
}

.home-hero-copy p {
    max-width: 610px;
    margin: 22px 0 0;
    color: var(--fun-muted);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.82;
}

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

.home-hero-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 148px;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.home-hero-actions a:hover {
    transform: translateY(-2px);
}

.home-hero-primary {
    color: #ffffff;
    background: var(--fun-orange);
    box-shadow: 0 18px 36px rgba(246, 130, 31, 0.20);
}

.home-hero-primary:hover {
    color: #ffffff;
    background: var(--fun-orange-deep);
    box-shadow: 0 20px 40px rgba(246, 130, 31, 0.25);
}

.home-hero-secondary {
    color: #13233C;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid #CBD8E8;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.045);
}

.home-hero-secondary:hover {
    color: var(--fun-orange-deep);
    border-color: rgba(246, 130, 31, 0.45);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
}

.home-section {
    position: relative;
    padding-top: 7rem;
    padding-bottom: 7rem;
}

.product-section {
    background:
        radial-gradient(circle at 50% 0%, rgba(246, 130, 31, 0.05), transparent 32%),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border-top: 0;
    border-bottom: 1px solid #edf2f7;
    margin-top: 0;
    padding-top: 5.25rem;
}

.pricing-section {
    background: #ffffff;
    border-top: 1px solid var(--fun-section-line);
    border-bottom: 1px solid var(--fun-section-line);
}

.network-showcase-section {
    overflow: hidden;
    background: #ffffff;
    border-top: 1px solid var(--fun-section-line);
    border-bottom: 1px solid var(--fun-section-line);
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
}

.scenario-section + .network-showcase-section {
    border-top: 0;
}

.network-showcase-section .network-shell {
    max-width: 80rem;
}

.faq-home-section {
    background: var(--fun-soft-bg);
    border-top: 1px solid var(--fun-section-line);
    border-bottom: 0;
}

.support-section {
    background: #ffffff;
    padding-top: 5.75rem;
    padding-bottom: 5.75rem;
}

.ecosystem-section {
    background: #F8FAFC;
    border-top: 1px solid var(--fun-section-line);
    border-bottom: 1px solid var(--fun-section-line);
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.final-cta-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #F8FAFC 72%, #ffffff 100%);
    border-top: 0;
    color: var(--fun-text);
    padding-top: 70px;
    padding-bottom: 92px;
}

.final-cta-section::before {
    content: none;
}

.final-cta-shell {
    position: relative;
    width: min(1280px, calc(100vw - 64px));
    min-height: 428px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(211, 219, 231, 0.95);
    border-radius: 24px;
    background: #ffffff;
    padding: 64px 64px 58px;
    box-shadow: 0 30px 82px rgba(15, 23, 42, 0.09);
}

.final-cta-shell::before {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
    background-size: 68px 68px, 68px 68px;
    opacity: 0.55;
    pointer-events: none;
}

.final-cta-shell::after {
    content: none;
}

.final-cta-copy,
.final-cta-network {
    position: relative;
    z-index: 1;
}

.final-cta-copy {
    z-index: 3;
    max-width: 520px;
}

.final-cta-kicker {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    margin-bottom: 18px;
    padding-left: 14px;
    color: var(--fun-orange-dark);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 900;
}

.final-cta-kicker::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    bottom: 3px;
    width: 4px;
    border-radius: 999px;
    background: var(--fun-orange);
}

.final-cta-copy h2 {
    max-width: 500px;
    margin: 0 0 18px;
    color: var(--fun-text);
    font-size: 44px;
    line-height: 1.14;
    font-weight: 900;
    letter-spacing: 0;
}

.final-cta-copy h2 span {
    color: var(--fun-orange);
}

.final-cta-copy p {
    max-width: 500px;
    margin: 0;
    color: var(--fun-muted);
    font-size: 15.5px;
    line-height: 1.82;
    font-weight: 650;
}

.final-cta-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
}

.final-cta-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 168px;
    min-height: 52px;
    border-radius: 10px;
    padding: 0 24px;
    font-size: 15px;
    font-weight: 900;
    white-space: nowrap;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.final-cta-actions a:hover {
    transform: translateY(-2px);
}

.final-cta-primary {
    color: #ffffff;
    background: var(--fun-orange);
    box-shadow: 0 16px 34px rgba(246, 130, 31, 0.24);
}

.final-cta-primary:hover {
    color: #ffffff;
    background: var(--fun-orange-deep);
    box-shadow: 0 18px 38px rgba(246, 130, 31, 0.28);
}

.final-cta-secondary {
    background: #ffffff;
    border: 1px solid #DBE3EE;
    color: var(--fun-text);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.final-cta-secondary:hover {
    border-color: rgba(246, 130, 31, 0.45);
    color: var(--fun-orange-deep);
    box-shadow: 0 14px 30px rgba(246, 130, 31, 0.08);
}

.final-cta-points {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
    margin-top: 30px;
}

.final-cta-points span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #475569;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 800;
}

.final-cta-points i {
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--fun-orange);
    box-shadow: 0 0 0 4px rgba(246, 130, 31, 0.12);
}

.final-cta-network {
    position: absolute;
    z-index: 1;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.88) 32%, rgba(255, 255, 255, 0.68) 48%, rgba(255, 255, 255, 0.34) 66%, rgba(255, 255, 255, 0.08) 100%),
        url("/web/funidc/static/images/final-network-v66.png");
    background-position: left center, center center;
    background-repeat: no-repeat;
    background-size: 100% 100%, cover;
    pointer-events: none;
}

.final-cta-network::before {
    content: none;
}

.antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.bg-cf-orange {
    background-color: var(--fun-orange);
}

.hover\:bg-cf-orangeHover:hover {
    background-color: var(--fun-orange-deep);
}

.hover\:text-cf-orangeHover:hover {
    color: var(--fun-orange-deep);
}

.to-red-500 {
    --tw-gradient-to: #FB923C;
}

.home-hover-card {
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

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

.product-heading-row h2 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--fun-text);
    font-size: clamp(30px, 3.1vw, 42px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: 0;
}

.product-heading-row p {
    max-width: 760px;
    color: var(--fun-muted);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.7;
}

.product-all-link {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    color: var(--fun-orange);
    font-size: 15px;
    font-weight: 900;
    transition: color 0.2s ease, transform 0.2s ease;
}

.product-all-link:hover {
    color: var(--fun-orange-deep);
    transform: translateX(3px);
}

.product-matrix-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.product-matrix-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(160px, 195px);
    gap: 14px;
    align-items: center;
    min-height: 0;
    overflow: hidden;
    border: 1px solid #dfe5ee;
    border-radius: 18px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.92));
    box-shadow: 0 18px 58px rgba(15, 23, 42, 0.07);
    padding: 22px 24px;
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

.product-matrix-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(110deg, rgba(246, 130, 31, 0.05), transparent 38%),
        radial-gradient(circle at 88% 16%, rgba(148, 163, 184, 0.12), transparent 34%);
    opacity: 0;
    transition: opacity 0.24s ease;
    pointer-events: none;
}

.product-matrix-card:hover {
    transform: translateY(-4px);
    border-color: rgba(246, 130, 31, 0.55);
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.11), 0 10px 26px rgba(246, 130, 31, 0.06);
}

.product-matrix-card:hover::before {
    opacity: 1;
}

.product-card-copy {
    position: relative;
    z-index: 1;
}

.product-card-copy h3 {
    margin-bottom: 12px;
    color: var(--fun-text);
    font-size: clamp(22px, 1.8vw, 28px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: 0;
}

.product-card-copy p {
    max-width: 360px;
    margin-bottom: 16px;
    color: var(--fun-muted);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.72;
}

.product-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.product-metrics span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 32px;
    padding: 0 13px;
    border-radius: 999px;
    border: 1px solid #E2E8F0;
    background: rgba(255, 255, 255, 0.82);
    color: #64748B;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
}

.product-metrics svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: #475569;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.product-card-link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    color: var(--fun-orange);
    font-size: 15px;
    font-weight: 900;
    transition: color 0.2s ease, transform 0.2s ease;
}

.product-card-link:hover {
    color: var(--fun-orange-deep);
    transform: translateX(4px);
}

.product-art {
    position: relative;
    z-index: 1;
    justify-self: end;
    width: min(100%, 192px);
    transition: transform 0.28s ease;
}

.product-matrix-card:hover .product-art {
    transform: translateY(-2px) scale(1.01);
}

.product-art svg {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 18px 28px rgba(15, 23, 42, 0.10));
}

.product-art img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    transform: scale(1.08);
    transform-origin: center;
    filter: drop-shadow(0 18px 28px rgba(15, 23, 42, 0.10));
}

.product-art img + svg {
    display: none;
}

.hero-secondary-cta {
    background: #fff7ed;
    border: 1px solid #FED7AA;
    color: var(--fun-orange);
    box-shadow: 0 10px 24px rgba(246, 130, 31, 0.06);
}

.hero-secondary-cta:hover {
    background: #ffffff;
    border-color: var(--fun-orange);
    color: var(--fun-orange-deep);
    box-shadow: 0 10px 24px rgba(246, 130, 31, 0.10);
    transform: translateY(-1px);
}

.scenario-section {
    background:
        linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 48%, #F8FAFC 100%);
    border-top: 1px solid var(--fun-section-line);
    border-bottom: 1px solid var(--fun-section-line);
}

.scenario-shell {
    --scenario-accent: #F6821F;
    --scenario-accent-rgb: 246, 130, 31;
}

.scenario-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
    gap: 20px;
    align-items: stretch;
    margin-bottom: 18px;
}

.scenario-copy-card,
.scenario-visual {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid #E5E7EB;
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.07);
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.scenario-copy-card {
    min-height: 378px;
    padding: 34px;
}

.scenario-copy-card::before {
    content: "";
    position: absolute;
    right: -90px;
    top: -110px;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    background: rgba(var(--scenario-accent-rgb), 0.13);
    filter: blur(12px);
    pointer-events: none;
}

.scenario-copy-card:hover,
.scenario-visual:hover {
    transform: translateY(-3px);
    border-color: rgba(var(--scenario-accent-rgb), 0.24);
    box-shadow: 0 28px 68px rgba(15, 23, 42, 0.09);
}

.scenario-copy-content {
    position: relative;
    z-index: 1;
}

.scenario-kicker {
    display: inline-flex;
    width: max-content;
    border-radius: 999px;
    background: rgba(var(--scenario-accent-rgb), 0.10);
    border: 1px solid rgba(var(--scenario-accent-rgb), 0.18);
    color: var(--scenario-accent);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 10px;
    margin-bottom: 18px;
}

.scenario-copy-card h3 {
    color: var(--fun-text);
    font-size: 36px;
    line-height: 1.14;
    font-weight: 900;
    letter-spacing: 0;
    margin-bottom: 16px;
}

.scenario-copy-card p {
    color: var(--fun-muted);
    font-size: 15px;
    line-height: 1.85;
    font-weight: 600;
    max-width: 620px;
}

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

.scenario-feature-metrics span {
    display: block;
    border-radius: 14px;
    border: 1px solid #E5E7EB;
    background: #F8FAFC;
    padding: 12px;
    transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.scenario-copy-card:hover .scenario-feature-metrics span {
    border-color: rgba(var(--scenario-accent-rgb), 0.20);
    background: rgba(var(--scenario-accent-rgb), 0.05);
    transform: translateY(-1px);
}

.scenario-feature-metrics strong {
    display: block;
    color: var(--scenario-accent);
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 7px;
}

.scenario-feature-metrics em {
    display: block;
    color: var(--fun-muted);
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
}

.scenario-points {
    display: grid;
    gap: 10px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.scenario-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--fun-text);
    font-size: 14px;
    font-weight: 700;
}

.scenario-points li::before {
    content: "";
    flex: 0 0 auto;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--scenario-accent);
    box-shadow: 0 0 0 5px rgba(var(--scenario-accent-rgb), 0.10);
}

.scenario-action-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.scenario-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 12px;
    background: var(--scenario-accent);
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.scenario-link:hover {
    color: #ffffff;
    filter: brightness(0.96);
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(var(--scenario-accent-rgb), 0.20);
}

.scenario-note {
    color: var(--fun-muted);
    font-size: 12px;
    font-weight: 700;
}

.scenario-visual {
    min-height: 378px;
    background: #0f172a;
}

.scenario-visual-frame {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    border-radius: 24px;
    background: #0f172a;
}

.scenario-visual-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 0.6s ease, filter 0.6s ease;
}

.scenario-visual:hover .scenario-visual-image {
    transform: scale(1.045);
    filter: saturate(1.04) contrast(1.02);
}

.scenario-visual-shade {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.08) 0%, rgba(15, 23, 42, 0.30) 100%),
        linear-gradient(90deg, rgba(15, 23, 42, 0.28) 0%, rgba(15, 23, 42, 0.02) 46%, rgba(15, 23, 42, 0.38) 100%);
    pointer-events: none;
}

.scenario-visual-label {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 4;
    display: inline-flex;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.50);
    color: var(--fun-text);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.10em;
    padding: 7px 10px;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.12);
}

.scenario-visual-card {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.90);
    padding: 16px;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.16);
    backdrop-filter: blur(10px);
}

.scenario-visual-card strong {
    color: var(--fun-text);
    font-size: 18px;
    font-weight: 900;
}

.scenario-visual-card span {
    color: var(--fun-muted);
    font-size: 13px;
    font-weight: 700;
    text-align: right;
}

.scenario-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.scenario-card {
    appearance: none;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    min-height: 132px;
    padding: 20px 44px 20px 20px;
    border-radius: 18px;
    border: 1px solid #E5E7EB;
    background: #ffffff;
    text-align: left;
    cursor: pointer;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.045);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.scenario-card::after {
    content: "\2192";
    position: absolute;
    right: 18px;
    bottom: 17px;
    color: var(--scenario-accent);
    font-size: 18px;
    font-weight: 900;
    opacity: 0.46;
    transform: translateX(0);
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.scenario-card:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--scenario-accent-rgb), 0.28);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.scenario-card:hover::after,
.scenario-card.is-active::after {
    opacity: 1;
    transform: translateX(3px);
}

.scenario-card.is-active {
    background:
        linear-gradient(180deg, rgba(var(--scenario-accent-rgb), 0.065) 0%, #FFFFFF 78%);
    border-color: rgba(var(--scenario-accent-rgb), 0.48);
    box-shadow: 0 18px 46px rgba(var(--scenario-accent-rgb), 0.10), 0 12px 32px rgba(15, 23, 42, 0.04);
    transform: translateY(-2px);
}

.scenario-card-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    height: 28px;
    padding: 0 9px;
    border-radius: 999px;
    background: rgba(var(--scenario-accent-rgb), 0.08);
    border: 1px solid rgba(var(--scenario-accent-rgb), 0.16);
    color: var(--scenario-accent);
    font-size: 10px;
    letter-spacing: 0.08em;
    font-weight: 900;
}

.scenario-card strong {
    color: var(--fun-text);
    font-size: 18px;
    font-weight: 900;
}

.scenario-card small {
    color: var(--fun-muted);
    font-size: 13px;
    line-height: 1.55;
    font-weight: 600;
}

.scenario-copy-content.is-changing {
    animation: scenarioFade 0.28s ease both;
}

.scenario-visual.is-changing .scenario-visual-frame {
    animation: scenarioVisualIn 0.32s ease both;
}

@keyframes scenarioFade {
    from {
        opacity: 0.28;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scenarioVisualIn {
    from {
        opacity: 0.55;
        transform: scale(0.985);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (hover: hover) {
    .home-hover-card:hover {
        border-color: var(--fun-orange);
        box-shadow: 0 20px 55px rgba(15, 23, 42, 0.10), 0 8px 24px rgba(246, 130, 31, 0.06);
        transform: translateY(-4px);
    }
}

.network-console {
    position: relative;
    overflow: visible;
    border-radius: 0;
    background: transparent;
    color: var(--fun-text);
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1.05fr);
    gap: 34px;
    align-items: stretch;
    min-height: 500px;
    padding: 18px 0 14px;
}

.network-console::before {
    content: "";
    position: absolute;
    inset: -28px -2vw -18px;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.025) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: 0.5;
    pointer-events: none;
}

.network-console::after {
    content: none;
}

.network-console > * {
    position: relative;
    z-index: 1;
}

.network-summary {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 500px;
    gap: 30px;
    min-width: 0;
}

.network-title {
    color: var(--fun-text);
    font-size: clamp(38px, 4.5vw, 58px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: 0;
    margin-bottom: 18px;
}

.network-desc {
    color: var(--fun-muted);
    font-size: 17px;
    line-height: 1.8;
    font-weight: 600;
    max-width: 620px;
}

.network-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 30px;
}

.network-metric {
    position: relative;
    overflow: hidden;
    min-height: 94px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    padding: 18px 20px;
    cursor: default;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}

.network-metric::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(246, 130, 31, 0.13), transparent 62%);
    opacity: 0;
    transition: opacity 0.22s ease;
    pointer-events: none;
}

.network-metric:hover {
    transform: translateY(-3px);
    border-color: rgba(246, 130, 31, 0.36);
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07), 0 8px 20px rgba(246, 130, 31, 0.06);
}

.network-metric:hover::after {
    opacity: 1;
}

.network-metric strong {
    position: relative;
    z-index: 1;
    display: block;
    color: var(--fun-orange);
    font-size: 28px;
    line-height: 1;
    margin-bottom: 10px;
    transition: color 0.22s ease, text-shadow 0.22s ease;
}

.network-metric:hover strong {
    color: var(--fun-orange-deep);
    text-shadow: 0 0 10px rgba(246, 130, 31, 0.14);
}

.network-metric span {
    position: relative;
    z-index: 1;
    display: block;
    color: var(--fun-muted);
    font-size: 12px;
    font-weight: 900;
}

.network-metric:hover span {
    color: #334155;
}

.network-node-panel {
    display: grid;
    gap: 12px;
    width: min(100%, 560px);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(255, 247, 237, 0.66) 0%, rgba(248, 250, 252, 0.92) 48%, #ffffff 100%);
    padding: 12px;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
}

.network-region-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.network-region-tabs a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 56px;
    border: 1px solid rgba(226, 232, 240, 0.92);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    color: #475569;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.network-region-tabs a:hover {
    transform: translateY(-1px);
    border-color: rgba(246, 130, 31, 0.34);
    background: #ffffff;
    color: var(--fun-orange-deep);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
}

.network-region-tabs a.is-active {
    border-color: rgba(246, 130, 31, 0.46);
    background: var(--fun-orange);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(246, 130, 31, 0.18);
}

.network-region-tabs strong {
    font-size: 15px;
    line-height: 1.1;
    font-weight: 900;
}

.network-region-tabs span {
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.1;
    font-weight: 800;
}

.network-node-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px 18px;
    align-items: center;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 16px;
    background: #ffffff;
    padding: 18px;
}

.network-node-card strong {
    display: block;
    color: var(--fun-text);
    font-size: 18px;
    line-height: 1.25;
    font-weight: 900;
    margin-bottom: 8px;
}

.network-node-card p {
    max-width: 360px;
    color: var(--fun-muted);
    font-size: 13px;
    line-height: 1.65;
    font-weight: 600;
}

.network-node-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(72px, 1fr));
    gap: 8px;
}

.network-node-stats span {
    min-height: 60px;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    background: #F8FAFC;
    padding: 10px;
    color: #64748B;
    font-size: 12px;
    font-weight: 800;
    text-align: center;
}

.network-node-stats b {
    display: block;
    color: var(--fun-orange-deep);
    font-size: 17px;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 5px;
}

.network-node-card > a {
    grid-column: 1 / -1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: start;
    min-height: 42px;
    border-radius: 10px;
    background: #111827;
    color: #ffffff;
    padding: 0 16px;
    font-size: 13px;
    font-weight: 900;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.network-node-card > a:hover {
    transform: translateY(-1px);
    background: var(--fun-orange-deep);
    box-shadow: 0 12px 26px rgba(246, 130, 31, 0.18);
}

.network-map {
    position: relative;
    min-height: 430px;
    border: 0;
    background: transparent;
    overflow: visible;
    margin-left: -12px;
}

.network-map::before {
    content: "";
    position: absolute;
    inset: 34px 4px 30px 12px;
    border-radius: 32px;
    background:
        radial-gradient(circle at 54% 52%, rgba(246, 130, 31, 0.075), transparent 30%),
        radial-gradient(ellipse at 50% 50%, rgba(248, 250, 252, 0.72), rgba(255, 255, 255, 0) 70%);
    opacity: 1;
    pointer-events: none;
}

.network-map svg {
    position: absolute;
    inset: -28px -18px -16px -40px;
    width: calc(100% + 58px);
    height: calc(100% + 48px);
    opacity: 1;
    filter: saturate(1.08) contrast(1.04);
}

.network-wave {
    transform-origin: center;
}

.network-console {
    grid-template-columns: minmax(0, 0.66fr) minmax(650px, 1.34fr);
    gap: 34px;
    min-height: 488px;
    padding: 8px 0;
}

.network-summary {
    min-height: 488px;
    justify-content: center;
    gap: 0;
}

.network-title {
    font-size: clamp(32px, 3vw, 36px);
    line-height: 1.16;
    margin-bottom: 16px;
}

.network-desc {
    max-width: 470px;
    font-size: 15px;
    line-height: 1.76;
}

.network-lite-list {
    display: grid;
    gap: 0;
    max-width: 460px;
    margin-top: 26px;
    border-top: 1px solid #E8EDF4;
}

.network-lite-item {
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #E8EDF4;
}

.network-lite-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 9px;
    background: #FFF7ED;
    color: var(--fun-orange);
}

.network-lite-icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.network-lite-item strong {
    display: block;
    color: var(--fun-text);
    font-size: 15px;
    font-weight: 900;
}

.network-lite-item em {
    display: block;
    margin-top: 3px;
    color: var(--fun-muted);
    font-size: 12px;
    line-height: 1.45;
    font-style: normal;
    font-weight: 700;
}

.network-lite-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 22px;
}

.network-lite-actions a {
    color: var(--fun-orange-deep);
    font-size: 13px;
    font-weight: 900;
}

.network-lite-actions a:hover {
    color: var(--fun-orange-dark);
}

.network-map {
    min-height: 488px;
    margin-left: 0;
}

.network-map::before {
    inset: 14px -28px 16px;
    border-radius: 38px;
    background:
        radial-gradient(circle at 51% 51%, rgba(246, 130, 31, 0.085), transparent 29%),
        radial-gradient(ellipse at 50% 50%, rgba(248, 250, 252, 0.72), rgba(255, 255, 255, 0) 73%);
}

.network-map svg {
    inset: -52px -64px -28px -100px;
    width: calc(100% + 164px);
    height: calc(100% + 86px);
}

.network-map .network-metrics {
    position: absolute;
    right: 0;
    bottom: 30px;
    display: flex;
    gap: 10px;
    margin: 0;
    z-index: 2;
}

.network-map .network-metric {
    min-width: 132px;
    min-height: 0;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.9);
    padding: 13px 14px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
}

.network-map .network-metric strong {
    font-size: 20px;
    margin-bottom: 6px;
}

.network-map .network-metric span {
    font-size: 12px;
    line-height: 1.2;
}

.faq-home-section {
    background: #F8FAFC;
    padding-top: 6rem;
    padding-bottom: 6rem;
    overflow-anchor: none;
}

.faq-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.faq-header h2 {
    color: var(--fun-text);
    font-size: 34px;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: 0;
    margin-bottom: 10px;
}

.faq-header p {
    max-width: 920px;
    color: var(--fun-muted);
    font-size: 15px;
    line-height: 1.8;
    font-weight: 600;
}

.faq-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 142px;
    height: 46px;
    border-radius: 10px;
    background: var(--fun-orange);
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(246, 130, 31, 0.16);
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-contact-btn:hover {
    background: var(--fun-orange-deep);
    box-shadow: 0 12px 28px rgba(246, 130, 31, 0.2);
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(230px, 0.34fr) minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
}

.faq-flow {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    margin-bottom: 0;
    border: 1px solid #E5E7EB;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 250, 252, 0.96) 100%);
    padding: 8px;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.055);
}

.faq-flow-item {
    display: grid;
    grid-template-columns: 34px 1fr;
    column-gap: 12px;
    row-gap: 2px;
    align-items: center;
    border: 0;
    border-radius: 12px;
    background: transparent;
    padding: 14px 12px;
    box-shadow: none;
    transition: background-color 0.2s ease;
}

.faq-flow-item:first-child {
    background: #FFF7ED;
}

.faq-flow-item:hover {
    background: #ffffff;
}

.faq-flow-item span {
    grid-row: span 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #FFF7ED;
    color: var(--fun-orange);
    font-size: 14px;
    font-weight: 900;
}

.faq-flow-item:first-child span {
    background: var(--fun-orange);
    color: #ffffff;
}

.faq-flow-item strong {
    color: var(--fun-text);
    font-size: 15px;
    font-weight: 900;
}

.faq-flow-item em {
    color: var(--fun-muted);
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
}

.faq-checks {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: 16px;
    height: 430px;
}

.faq-check-card {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 14px;
    align-items: center;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    background: #ffffff;
    padding: 20px 22px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.055);
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
    will-change: transform;
}

.faq-check-card:hover {
    transform: translateY(-3px);
    border-color: rgba(246, 130, 31, 0.26);
    background: linear-gradient(135deg, rgba(255, 247, 237, 0.78) 0%, #ffffff 72%);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.075), 0 10px 22px rgba(246, 130, 31, 0.045);
}

.faq-check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #FFF7ED;
    color: var(--fun-orange);
}

.faq-check-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.faq-check-icon img {
    display: block;
    width: 34px;
    height: 34px;
    object-fit: contain;
    filter: drop-shadow(0 8px 12px rgba(15, 23, 42, 0.08));
    transition: transform 0.22s ease, filter 0.22s ease;
}

.faq-check-card:hover .faq-check-icon img {
    transform: scale(1.08);
    filter: drop-shadow(0 10px 14px rgba(246, 130, 31, 0.14));
}

.faq-check-card strong {
    display: block;
    color: var(--fun-text);
    font-size: 17px;
    font-weight: 900;
}

.faq-check-card em {
    display: block;
    margin-top: 6px;
    color: var(--fun-muted);
    font-size: 13px;
    line-height: 1.6;
    font-style: normal;
    font-weight: 700;
}

.faq-panel {
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    background: #ffffff;
    padding: 10px;
    height: 430px;
    box-shadow: 0 20px 54px rgba(15, 23, 42, 0.065);
    overflow-y: auto;
    overflow-anchor: none;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.faq-panel:hover {
    transform: translateY(-2px);
    border-color: rgba(246, 130, 31, 0.18);
    box-shadow: 0 26px 66px rgba(15, 23, 42, 0.09), 0 10px 24px rgba(246, 130, 31, 0.035);
}

.faq-list {
    display: grid;
    gap: 0;
}

.faq-item {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border: 0;
    border-radius: 12px;
    background: #ffffff;
    padding: 0 18px;
    box-shadow: none;
    overflow-anchor: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.faq-item + .faq-item {
    border-top: 1px solid #EEF2F7;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.faq-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    bottom: 14px;
    width: 3px;
    border-radius: 999px;
    background: transparent;
    transition: background-color 0.2s ease;
    z-index: 1;
}

.faq-item::after {
    display: none;
}

.faq-item:hover {
    background: linear-gradient(90deg, #F8FAFC 0%, #ffffff 90%);
    box-shadow: inset 0 0 0 1px rgba(226, 232, 240, 0.72);
}

.faq-item:hover::before {
    background: #CBD5E1;
}

.faq-item[open] {
    background: linear-gradient(90deg, #F8FAFC 0%, #ffffff 90%);
    box-shadow: inset 0 0 0 1px rgba(226, 232, 240, 0.72);
}

.faq-item[open]::before {
    background: var(--fun-orange);
}

.faq-item summary {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    list-style: none;
    color: var(--fun-text);
    font-size: 16px;
    font-weight: 900;
    min-height: 64px;
    padding: 16px 0;
    transition: color 0.2s ease;
}

.faq-item summary:focus {
    outline: none;
}

.faq-item summary:focus-visible {
    outline: 2px solid rgba(246, 130, 31, 0.32);
    outline-offset: 3px;
    border-radius: 10px;
}

.faq-item:hover summary,
.faq-item[open] summary {
    color: #111827;
}

.faq-item summary::after {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    border: 1px solid #CBD5E1;
    background: #ffffff;
    color: #64748B;
    font-size: 16px;
    line-height: 1;
    flex: 0 0 auto;
    box-shadow: none;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover summary::after {
    transform: scale(1.08);
    border-color: rgba(246, 130, 31, 0.36);
    background: #ffffff;
    color: var(--fun-orange-deep);
    box-shadow: 0 8px 18px rgba(246, 130, 31, 0.12);
}

.faq-item[open] summary::after {
    content: "-";
    background: var(--fun-orange);
    border-color: var(--fun-orange);
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(246, 130, 31, 0.18);
}

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

.faq-item p {
    position: relative;
    z-index: 1;
    color: var(--fun-muted);
    font-size: 14px;
    line-height: 1.8;
    font-weight: 600;
    border-top: 1px solid #F1F5F9;
    margin: 0;
    padding-top: 12px;
    padding-bottom: 16px;
    max-width: 920px;
    overflow-anchor: none;
}

.support-problem-header {
    max-width: 980px;
    margin-bottom: 28px;
}

.support-problem-header h2 {
    color: var(--fun-text);
    font-size: clamp(34px, 3.4vw, 44px);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: 0;
    margin-bottom: 14px;
}

.support-problem-header p {
    color: var(--fun-muted);
    font-size: 16px;
    line-height: 1.8;
    font-weight: 600;
}

.support-problem-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.support-problem-card {
    position: relative;
    overflow: hidden;
    min-height: 196px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    padding: 28px 26px 24px;
    box-shadow: 0 14px 38px rgba(15, 23, 42, 0.045);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.support-problem-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 16% 20%, rgba(246, 130, 31, 0.08), transparent 34%);
    opacity: 0;
    transition: opacity 0.22s ease;
    pointer-events: none;
}

.support-problem-card:hover {
    transform: translateY(-4px);
    border-color: rgba(246, 130, 31, 0.30);
    box-shadow: 0 24px 58px rgba(15, 23, 42, 0.085), 0 10px 24px rgba(246, 130, 31, 0.055);
}

.support-problem-card:hover::before {
    opacity: 1;
}

.support-problem-icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border-radius: 0;
    background: transparent;
    border: 0;
    color: inherit;
    margin-bottom: 14px;
    overflow: visible;
}

.support-problem-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.support-problem-icon img {
    display: block;
    width: 104px;
    height: 104px;
    max-width: none;
    object-fit: contain;
    filter: drop-shadow(0 12px 18px rgba(15, 23, 42, 0.08));
}

.support-problem-card h3 {
    position: relative;
    z-index: 1;
    color: var(--fun-text);
    font-size: 18px;
    line-height: 1.35;
    font-weight: 900;
    margin-bottom: 10px;
}

.support-problem-card p {
    position: relative;
    z-index: 1;
    color: var(--fun-muted);
    font-size: 14px;
    line-height: 1.75;
    font-weight: 600;
    margin: 0;
}

.support-card-arrow {
    position: relative;
    z-index: 1;
    display: inline-flex;
    color: var(--fun-orange);
    font-size: 20px;
    line-height: 1;
    font-weight: 900;
    margin-top: 20px;
}

.cf-card {
    background: #ffffff;
    border: 1px solid var(--fun-border);
    border-radius: 18px;
    box-shadow: 0 12px 38px rgba(15, 23, 42, 0.06);
    transition: all 0.2s ease-in-out;
}

.cf-card:hover {
    border-color: var(--fun-orange);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.10), 0 8px 22px rgba(246, 130, 31, 0.05);
    transform: translateY(-2px);
}

.pricing-card {
    border-radius: 18px;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.pricing-card:hover {
    border-color: var(--fun-orange);
    box-shadow: 0 22px 58px rgba(15, 23, 42, 0.11), 0 10px 24px rgba(246, 130, 31, 0.08);
    transform: translateY(-4px);
}

.pricing-card-featured {
    border-color: var(--fun-orange) !important;
    border-radius: 18px;
    box-shadow:
        0 0 0 2px rgba(246, 130, 31, 0.95),
        0 24px 62px rgba(15, 23, 42, 0.12),
        0 12px 28px rgba(246, 130, 31, 0.10);
}

.pricing-card-featured:hover {
    border-color: var(--fun-orange) !important;
    box-shadow:
        0 0 0 2px rgba(246, 130, 31, 1),
        0 28px 70px rgba(15, 23, 42, 0.14),
        0 14px 32px rgba(246, 130, 31, 0.14);
    transform: translateY(-20px);
}

.pricing-btn {
    border: 2px solid var(--fun-orange);
}

.pricing-btn-outline {
    background: #fff7ed;
    color: var(--fun-orange);
}

.pricing-btn-outline:hover {
    background: var(--fun-orange);
    color: #ffffff;
}

.pricing-btn-primary {
    background: var(--fun-orange);
    color: #ffffff;
}

.pricing-btn-primary:hover {
    background: var(--fun-orange-deep);
    border-color: var(--fun-orange-deep);
}

.nav-item:hover > .nav-dropdown,
.nav-item:focus-within > .nav-dropdown {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0);
}

@media (max-width: 1023px) {
    .product-heading-row {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .product-matrix-card {
        grid-template-columns: minmax(0, 1fr) minmax(150px, 190px);
    }

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

    .scenario-copy-card,
    .scenario-visual {
        min-height: 330px;
    }

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

    .faq-header {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .faq-checks {
        grid-template-rows: none;
        height: auto;
    }

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

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

    .final-cta-shell {
        width: min(100%, calc(100vw - 48px));
        min-height: 0;
        padding: 42px 40px 36px;
    }

    .final-cta-copy h2 {
        max-width: 680px;
        font-size: 38px;
    }

    .final-cta-copy p {
        max-width: 660px;
    }

    .final-cta-actions {
        justify-content: flex-start;
    }

    .final-cta-network {
        position: relative;
        width: 100%;
        inset: auto;
        height: 304px;
        margin-top: 24px;
        border: 1px solid rgba(203, 213, 225, 0.82);
        background-position: center center, center center;
        background-size: 100% 100%, cover;
        border-radius: 18px;
        background-color: rgba(255, 255, 255, 0.92);
    }

    .final-cta-network::before {
        content: none;
    }

}

@media (max-width: 640px) {
    .home-hero-section {
        padding-bottom: 4rem;
    }

    .home-section,
    .final-cta-section {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
    }

    .ecosystem-section {
        padding-top: 2.75rem;
        padding-bottom: 2.75rem;
    }

    .network-showcase-section {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
    }

    .product-heading-row {
        gap: 18px;
        margin-bottom: 28px;
    }

    .product-heading-row h2 {
        font-size: 28px;
    }

    .product-heading-row p {
        font-size: 14px;
    }

    .product-all-link {
        display: none;
    }

    .product-matrix-grid {
        gap: 16px;
    }

    .product-matrix-card {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 20px;
        border-radius: 16px;
    }

    .product-card-copy h3 {
        font-size: 24px;
    }

    .product-card-copy p {
        max-width: none;
        margin-bottom: 14px;
        font-size: 13px;
    }

    .product-metrics {
        gap: 8px;
        margin-bottom: 16px;
    }

    .product-metrics span {
        min-height: 30px;
        padding: 0 10px;
        font-size: 12px;
    }

    .product-art {
        justify-self: center;
        width: min(100%, 210px);
        margin-top: 4px;
    }

    .scenario-copy-card {
        min-height: 0;
        padding: 22px;
        border-radius: 20px;
    }

    .scenario-copy-card h3 {
        font-size: 28px;
    }

    .scenario-feature-metrics {
        grid-template-columns: 1fr;
    }

    .scenario-visual {
        min-height: 290px;
        border-radius: 20px;
    }

    .scenario-visual-frame {
        inset: 0;
        border-radius: 20px;
    }

    .scenario-visual-card {
        left: 12px;
        right: 12px;
        bottom: 12px;
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .scenario-visual-card span {
        text-align: left;
    }

    .scenario-tabs {
        display: flex;
        overflow-x: auto;
        padding-bottom: 4px;
        scroll-snap-type: x mandatory;
    }

    .scenario-card {
        flex: 0 0 240px;
        min-height: 0;
        scroll-snap-align: start;
    }

    .faq-flow {
        grid-template-columns: 1fr;
        padding: 6px;
    }

    .faq-header h2 {
        font-size: 28px;
    }

    .faq-panel {
        border-radius: 16px;
    }

    .support-section {
        padding-top: 4.5rem;
        padding-bottom: 4rem;
    }

    .support-problem-header {
        margin-bottom: 22px;
    }

    .support-problem-header h2 {
        font-size: 30px;
    }

    .support-problem-header p {
        font-size: 14px;
        line-height: 1.75;
    }

    .support-problem-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .support-problem-card {
        min-height: 0;
        padding: 22px;
        border-radius: 16px;
    }

    .support-problem-icon {
        width: 76px;
        height: 76px;
        margin-bottom: 14px;
    }

    .support-problem-icon svg {
        width: 24px;
        height: 24px;
    }

    .support-problem-icon img {
        width: 86px;
        height: 86px;
    }

    .support-problem-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .support-problem-card p {
        font-size: 13px;
        line-height: 1.65;
    }

    .support-card-arrow {
        margin-top: 16px;
    }

    .faq-panel {
        padding: 6px;
        min-height: 0;
    }

    .faq-item summary {
        font-size: 15px;
        gap: 12px;
    }

    .final-cta-shell {
        gap: 22px;
        width: calc(100vw - 32px);
        border-color: rgba(203, 213, 225, 0.95);
        border-radius: 18px;
        padding: 30px 20px;
    }

    .final-cta-shell::before {
        top: 0;
        bottom: 0;
        background-size: 56px 56px, 56px 56px;
    }

    .final-cta-kicker {
        margin-bottom: 14px;
        font-size: 12px;
    }

    .final-cta-copy h2 {
        font-size: 30px;
        line-height: 1.16;
    }

    .final-cta-copy p {
        font-size: 14px;
        line-height: 1.75;
    }

    .final-cta-actions {
        display: grid;
        width: 100%;
        grid-template-columns: 1fr;
    }

    .final-cta-actions a {
        width: 100%;
        min-height: 50px;
    }

    .final-cta-points {
        gap: 8px;
        margin-top: 20px;
    }

    .final-cta-points span {
        font-size: 12px;
    }

    .final-cta-network {
        height: 232px;
        margin-top: 18px;
        border-color: rgba(190, 201, 216, 0.95);
        background-position: center center, center center;
        background-size: 100% 100%, cover;
    }

}


@media (max-width: 1023px) {
    .network-console {
        grid-template-columns: 1fr;
        gap: 22px;
        min-height: 0;
        padding: 20px 0;
    }

    .network-summary {
        min-height: 0;
        gap: 28px;
    }

    .network-map {
        min-height: 340px;
        margin-left: 0;
    }

    .network-map::before {
        inset: 28px 2px 24px;
        border-radius: 26px;
    }

    .network-map .network-wave {
        inset: -20px -16px -14px -34px;
        width: calc(100% + 50px);
        height: calc(100% + 34px);
    }

    .network-title {
        white-space: normal;
    }

    .network-node-panel {
        width: 100%;
    }

    .network-node-card p {
        max-width: none;
    }
}

@media (max-width: 640px) {
    .network-console {
        padding: 14px 0;
        border-radius: 0;
    }

    .network-summary {
        gap: 22px;
    }

    .network-title {
        font-size: 32px;
    }

    .network-desc {
        font-size: 14px;
    }

    .network-metrics {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        margin-top: 22px;
    }

    .network-metric {
        min-height: 0;
        border-radius: 14px;
        padding: 14px 8px;
        text-align: center;
    }

    .network-metric strong {
        margin-top: 0;
        margin-bottom: 8px;
        font-size: 24px;
    }

    .network-metric span {
        font-size: 11px;
        line-height: 1.25;
    }

    .network-node-panel {
        gap: 10px;
        border-radius: 16px;
        padding: 10px;
    }

    .network-region-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .network-region-tabs a {
        min-height: 52px;
    }

    .network-node-card {
        grid-template-columns: 1fr;
        gap: 14px;
        border-radius: 14px;
        padding: 16px;
    }

    .network-node-card > a {
        width: 100%;
        justify-self: stretch;
    }

    .network-map {
        min-height: 250px;
        padding-bottom: 0;
    }

    .network-map::before {
        inset: 20px 0 18px;
        border-radius: 22px;
    }

    .network-map .network-wave {
        inset: -10px -44px -12px -88px;
        width: calc(100% + 132px);
        height: calc(100% + 24px);
    }
}

@media (max-width: 1023px) {
    .network-console {
        grid-template-columns: 1fr;
        gap: 20px;
        min-height: 0;
    }

    .network-summary {
        min-height: 0;
    }

    .network-desc,
    .network-lite-list {
        max-width: none;
    }

    .network-map {
        min-height: 360px;
    }

    .network-map .network-wave {
        inset: -30px -52px -12px -92px;
        width: calc(100% + 144px);
        height: calc(100% + 52px);
    }

    .network-map .network-metrics {
        right: 0;
        left: 0;
        justify-content: flex-end;
    }

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

@media (max-width: 640px) {
    .network-title {
        font-size: 30px;
    }

    .network-lite-item {
        grid-template-columns: 26px 1fr;
    }

    .network-lite-actions {
        margin-top: 20px;
    }

    .network-map {
        min-height: 340px;
    }

    .network-map .network-wave {
        inset: -24px -54px 0 -94px;
        width: calc(100% + 148px);
        height: 312px;
    }

    .network-map .network-metrics {
        position: relative;
        right: auto;
        bottom: auto;
        display: grid;
        grid-template-columns: 1fr;
        margin-top: 252px;
    }

    .network-map .network-metric {
        width: 100%;
        text-align: left;
    }

    .faq-check-card {
        grid-template-columns: 42px 1fr;
        padding: 18px;
    }

}

@media (max-width: 1023px) {
    .home-hero-section {
        min-height: 0;
    }

    .home-hero-media {
        background-image: url("/web/funidc/static/images/hero-datacenter-v80.jpg");
        background-image: image-set(url("/web/funidc/static/images/hero-datacenter-v80.webp") type("image/webp"), url("/web/funidc/static/images/hero-datacenter-v80.jpg") type("image/jpeg"));
        background-position: 58% top;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .home-hero-media::after {
        content: "";
        background: rgba(255, 255, 255, 0.72);
    }

    .home-hero-inner {
        width: calc(100vw - 32px);
        min-height: 0;
        padding: 62px 0 72px;
    }

    .home-hero-copy {
        max-width: 100%;
        transform: none;
    }

    .home-hero-copy h1 {
        font-size: 42px;
        line-height: 1.1;
    }

    .home-hero-copy p {
        max-width: none;
        font-size: 15px;
        line-height: 1.78;
    }

    .home-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        margin-top: 28px;
    }
}

@media (max-width: 640px) {
    .home-hero-section {
        padding-bottom: 0;
    }

    .home-hero-inner {
        width: calc(100vw - 32px);
        padding: 56px 0 66px;
    }

    .home-hero-kicker {
        margin-bottom: 16px;
        font-size: 12px;
    }

    .home-hero-kicker::before {
        width: 30px;
    }

    .home-hero-copy h1 {
        font-size: 39px;
        line-height: 1.1;
    }

    .home-hero-copy p {
        margin-top: 22px;
        font-size: 15px;
        line-height: 1.78;
    }

    .home-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 26px;
    }

    .home-hero-actions a {
        width: 100%;
        min-height: 50px;
        font-size: 15px;
    }
}

@media (max-width: 640px) {
    body > header > .bg-white {
        box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
    }

    body > header .w-full {
        padding-left: 18px;
        padding-right: 18px;
    }

    .home-hero-media {
        background-position: 60% top;
    }

    .home-hero-media::after {
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0.78) 68%, rgba(255, 255, 255, 0.84) 100%);
    }

    .home-hero-inner {
        width: calc(100vw - 36px);
        padding: 42px 0 48px;
    }

    .home-hero-kicker {
        gap: 10px;
        margin-bottom: 14px;
        font-size: 11.5px;
        line-height: 1.3;
    }

    .home-hero-kicker::before {
        width: 26px;
    }

    .home-hero-copy h1 {
        font-size: 34px;
        line-height: 1.08;
    }

    .home-hero-copy p {
        margin-top: 18px;
        color: #586A84;
        font-size: 14px;
        line-height: 1.68;
    }

    .home-hero-actions {
        gap: 10px;
        margin-top: 22px;
    }

    .home-hero-actions a {
        min-height: 46px;
        border-radius: 10px;
        font-size: 14px;
    }

    .product-section {
        padding-top: 46px;
    }

    .home-section,
    .network-showcase-section,
    .support-section,
    .faq-home-section {
        padding-top: 52px;
        padding-bottom: 52px;
    }

    .product-heading-row,
    .support-problem-header,
    .faq-header {
        margin-bottom: 20px;
    }

    .product-heading-row h2,
    .support-problem-header h2,
    .faq-header h2,
    .network-title {
        font-size: 26px;
        line-height: 1.18;
        margin-bottom: 10px;
    }

    .product-heading-row p,
    .support-problem-header p,
    .faq-header p,
    .network-desc {
        font-size: 13px;
        line-height: 1.68;
    }

    .product-matrix-grid {
        gap: 12px;
    }

    .product-matrix-card {
        grid-template-columns: minmax(0, 1fr) 116px;
        gap: 10px;
        align-items: center;
        min-height: 210px;
        padding: 18px;
        border-radius: 15px;
        box-shadow: 0 12px 30px rgba(15, 23, 42, 0.052);
    }

    .product-card-copy h3 {
        font-size: 21px;
        margin-bottom: 8px;
    }

    .product-card-copy p {
        margin-bottom: 10px;
        font-size: 12px;
        line-height: 1.62;
    }

    .product-metrics {
        gap: 6px;
        margin-bottom: 12px;
    }

    .product-metrics span {
        min-height: 26px;
        padding: 0 8px;
        font-size: 11px;
    }

    .product-metrics svg {
        width: 13px;
        height: 13px;
    }

    .product-card-link {
        font-size: 13px;
    }

    .product-art {
        align-self: end;
        justify-self: end;
        width: 112px;
        margin-top: 0;
    }

    .scenario-section {
        padding-top: 52px;
        padding-bottom: 48px;
    }

    .scenario-section h2 {
        font-size: 26px;
        line-height: 1.18;
    }

    .scenario-copy-card {
        padding: 18px;
        border-radius: 16px;
    }

    .scenario-copy-card h3 {
        font-size: 24px;
    }

    .scenario-copy-card p {
        font-size: 13px;
        line-height: 1.68;
    }

    .scenario-feature-metrics {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        margin: 18px 0;
    }

    .scenario-feature-metrics span {
        padding: 10px 8px;
    }

    .scenario-feature-metrics strong {
        font-size: 17px;
    }

    .scenario-feature-metrics em {
        font-size: 11px;
        line-height: 1.25;
    }

    .scenario-points {
        gap: 8px;
        margin-bottom: 18px;
    }

    .scenario-points li,
    .scenario-note {
        font-size: 12px;
    }

    .scenario-visual {
        min-height: 220px;
        border-radius: 16px;
    }

    .scenario-visual-frame {
        border-radius: 16px;
    }

    .scenario-tabs {
        gap: 10px;
    }

    .scenario-card {
        flex-basis: 210px;
        padding: 14px;
        border-radius: 14px;
    }

    .scenario-card strong {
        font-size: 15px;
    }

    .scenario-card small {
        font-size: 11px;
    }

    .pricing-section .grid {
        gap: 14px;
    }

    .pricing-section .pricing-card {
        padding: 22px !important;
    }

    .pricing-card-featured,
    .pricing-card-featured:hover {
        transform: none;
    }

    .pricing-section .text-4xl {
        font-size: 30px;
        line-height: 1.1;
    }

    .pricing-section ul {
        margin-bottom: 22px !important;
    }

    .pricing-section li {
        font-size: 13px;
        line-height: 1.35;
    }

    .network-showcase-section {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .network-console {
        gap: 12px;
        padding: 0;
    }

    .network-lite-list {
        margin-top: 18px;
    }

    .network-lite-item {
        padding: 12px 0;
    }

    .network-lite-actions {
        margin-top: 16px;
    }

    .network-map {
        min-height: 260px;
        overflow: hidden;
    }

    .network-map::before {
        inset: 12px 0 10px;
        border-radius: 20px;
    }

    .network-map .network-wave {
        inset: -42px -70px auto -100px;
        width: calc(100% + 170px);
        height: 230px;
    }

    .network-map .network-metrics {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 8px;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        margin-top: 0;
    }

    .network-map .network-metric {
        width: auto;
        padding: 12px 8px;
        text-align: center;
    }

    .network-map .network-metric strong {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .support-problem-grid {
        gap: 12px;
    }

    .support-problem-card {
        display: grid;
        grid-template-columns: 72px minmax(0, 1fr);
        column-gap: 14px;
        align-items: center;
        padding: 18px;
        border-radius: 15px;
        box-shadow: 0 12px 30px rgba(15, 23, 42, 0.052);
    }

    .support-problem-icon {
        grid-row: span 2;
        width: 66px;
        height: 66px;
        margin-bottom: 0;
    }

    .support-problem-icon img {
        width: 74px;
        height: 74px;
    }

    .support-problem-card h3 {
        align-self: end;
        font-size: 17px;
        margin-bottom: 6px;
    }

    .support-problem-card p {
        align-self: start;
        font-size: 12.5px;
        line-height: 1.6;
    }

    .support-card-arrow {
        display: none;
    }

    .faq-header {
        gap: 16px;
    }

    .faq-contact-btn {
        width: 100%;
        min-width: 0;
        height: 44px;
    }

    .faq-layout {
        gap: 12px;
    }

    .faq-checks {
        gap: 10px;
    }

    .faq-check-card {
        grid-template-columns: 40px 1fr;
        gap: 12px;
        padding: 14px;
        border-radius: 14px;
        box-shadow: 0 10px 26px rgba(15, 23, 42, 0.045);
    }

    .faq-check-icon {
        width: 38px;
        height: 38px;
        border-radius: 11px;
    }

    .faq-check-icon img {
        width: 31px;
        height: 31px;
    }

    .faq-check-card strong {
        font-size: 15px;
    }

    .faq-check-card em {
        margin-top: 4px;
        font-size: 12px;
        line-height: 1.52;
    }

    .faq-panel {
        height: auto;
        overflow: visible;
        padding: 6px;
        border-radius: 15px;
        box-shadow: 0 12px 32px rgba(15, 23, 42, 0.055);
    }

    .faq-item {
        padding: 0 14px;
    }

    .faq-item summary {
        min-height: 54px;
        padding: 12px 0;
        font-size: 14px;
    }

    .faq-item p {
        padding-top: 10px;
        padding-bottom: 14px;
        font-size: 12.5px;
        line-height: 1.68;
    }

    .final-cta-section {
        padding-top: 48px;
        padding-bottom: 52px;
    }

    .final-cta-shell {
        width: calc(100vw - 32px);
        padding: 24px 18px;
        border-radius: 16px;
    }

    .final-cta-kicker {
        margin-bottom: 12px;
        font-size: 11.5px;
    }

    .final-cta-copy h2 {
        font-size: 27px;
        line-height: 1.16;
        margin-bottom: 14px;
    }

    .final-cta-copy p {
        font-size: 13px;
        line-height: 1.68;
    }

    .final-cta-actions {
        gap: 10px;
        margin-top: 22px;
    }

    .final-cta-actions a {
        min-height: 46px;
        border-radius: 10px;
        font-size: 14px;
    }

    .final-cta-points {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px 12px;
        margin-top: 18px;
    }

    .final-cta-points span {
        font-size: 11.5px;
        line-height: 1.35;
    }

    .final-cta-network {
        height: 178px;
        margin-top: 18px;
        border-radius: 14px;
        background-size: 100% 100%, cover;
    }
}

@media (max-width: 640px) {
    .scenario-layout {
        margin-bottom: 14px;
    }

    .scenario-tabs {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        overflow: visible;
        padding-bottom: 0;
        scroll-snap-type: none;
    }

    .scenario-card {
        flex: none;
        flex-basis: auto;
        min-width: 0;
        min-height: 86px;
        padding: 12px;
        gap: 6px;
        border-radius: 14px;
        scroll-snap-align: none;
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.045);
    }

    .scenario-card:hover,
    .scenario-card.is-active {
        transform: none;
    }

    .scenario-card::after {
        display: none;
    }

    .scenario-card.is-active {
        background:
            linear-gradient(180deg, rgba(var(--scenario-accent-rgb), 0.09) 0%, rgba(255, 255, 255, 0.98) 84%);
        border-color: rgba(var(--scenario-accent-rgb), 0.52);
        box-shadow: 0 12px 28px rgba(var(--scenario-accent-rgb), 0.10), 0 8px 22px rgba(15, 23, 42, 0.035);
    }

    .scenario-card-badge {
        height: 22px;
        padding: 0 7px;
        font-size: 10px;
    }

    .scenario-card strong {
        font-size: 15px;
        line-height: 1.2;
    }

    .scenario-card small {
        display: -webkit-box;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        font-size: 11px;
        line-height: 1.35;
    }
}

@media (max-width: 640px) {
    .scenario-section {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .scenario-section .mb-8 {
        margin-bottom: 16px;
    }

    .scenario-section h2 {
        font-size: 24px;
        line-height: 1.16;
    }

    .scenario-section h2 + p {
        font-size: 12.5px;
        line-height: 1.58;
    }

    .scenario-shell {
        display: flex;
        flex-direction: column;
    }

    .scenario-tabs {
        order: 1;
        margin-bottom: 12px;
    }

    .scenario-layout {
        order: 2;
        gap: 0;
        margin-bottom: 0;
    }

    .scenario-card {
        min-height: 68px;
        padding: 10px;
        gap: 4px;
    }

    .scenario-card-badge {
        height: 20px;
        padding: 0 6px;
        font-size: 9.5px;
    }

    .scenario-card strong {
        font-size: 14px;
    }

    .scenario-card small {
        font-size: 10.5px;
        line-height: 1.28;
    }

    .scenario-copy-card {
        padding: 16px;
        border-radius: 16px;
    }

    .scenario-kicker {
        display: none;
    }

    .scenario-copy-card h3 {
        font-size: 22px;
        line-height: 1.18;
        margin-bottom: 9px;
    }

    .scenario-copy-card p {
        font-size: 12.5px;
        line-height: 1.58;
    }

    .scenario-feature-metrics {
        gap: 6px;
        margin: 12px 0;
    }

    .scenario-feature-metrics span {
        border-radius: 12px;
        padding: 9px 8px;
    }

    .scenario-feature-metrics strong {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .scenario-feature-metrics em {
        font-size: 10.5px;
    }

    .scenario-points,
    .scenario-note,
    .scenario-visual {
        display: none;
    }

    .scenario-action-row {
        margin-top: 12px;
    }

    .scenario-link {
        width: 100%;
        min-height: 42px;
        border-radius: 10px;
        font-size: 13px;
    }
}

/* Homepage global network map */
.network-showcase-section {
    padding-top: 4.75rem;
    padding-bottom: 3rem;
    background:
        linear-gradient(rgba(226, 232, 240, 0.24) 1px, transparent 1px),
        linear-gradient(90deg, rgba(226, 232, 240, 0.24) 1px, transparent 1px),
        #ffffff;
    background-size: 72px 72px;
}

.network-globe-shell {
    max-width: 90rem;
}

.network-globe-header {
    text-align: center;
}

.network-globe-header > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--fun-orange-deep);
    font-size: 12px;
    font-weight: 900;
}

.network-globe-header > span::before,
.network-globe-header > span::after {
    content: "";
    width: 24px;
    height: 2px;
    background: var(--fun-orange);
}

.network-globe-header h2 {
    margin: 10px 0 0;
    color: var(--fun-text);
    font-size: clamp(32px, 3.2vw, 40px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: 0;
}

.network-globe-header p {
    margin: 12px 0 0;
    color: var(--fun-muted);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.7;
}

.network-globe-stage {
    position: relative;
    width: min(1280px, 100%);
    margin: 24px auto -68px;
}

.network-globe-image {
    display: block;
    width: 100%;
    height: auto;
}

.network-globe-pin {
    position: absolute;
    top: var(--pin-y);
    left: var(--pin-x);
    display: grid;
    place-items: center;
    width: 11px;
    height: 11px;
    margin: 0;
    padding: 0;
    border: 2px solid var(--fun-orange);
    border-radius: 50%;
    outline: none;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(246, 130, 31, 0.09);
    transform: translate(-50%, -50%);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.network-globe-pin i {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--fun-orange);
}

.network-globe-pin.is-core {
    width: 13px;
    height: 13px;
    box-shadow:
        0 0 0 5px rgba(246, 130, 31, 0.15),
        0 0 0 10px rgba(246, 130, 31, 0.07);
}

.network-globe-pin em {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: calc(100% + 10px);
    min-width: max-content;
    padding: 6px 8px;
    border: 1px solid #FED7AA;
    border-radius: 6px;
    color: var(--fun-orange-deep);
    background: rgba(255, 247, 237, 0.98);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.10);
    font-size: 10px;
    font-style: normal;
    font-weight: 900;
    line-height: 1;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 4px);
    transition: opacity 0.16s ease, transform 0.16s ease;
}

.network-globe-pin em::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    width: 7px;
    height: 7px;
    border-right: 1px solid #FED7AA;
    border-bottom: 1px solid #FED7AA;
    background: #FFF7ED;
    transform: translate(-50%, -4px) rotate(45deg);
}

.network-globe-pin:hover,
.network-globe-pin:focus-visible,
.network-globe-pin.is-active {
    box-shadow:
        0 0 0 5px rgba(246, 130, 31, 0.16),
        0 0 0 10px rgba(246, 130, 31, 0.07);
}

.network-globe-pin:hover em,
.network-globe-pin:focus-visible em,
.network-globe-pin.is-active em {
    opacity: 1;
    transform: translate(-50%, 0);
}

@media (max-width: 640px) {
    .network-showcase-section {
        padding-top: 48px;
        padding-bottom: 34px;
        background-size: 40px 40px;
    }

    .network-globe-header > span {
        font-size: 11px;
    }

    .network-globe-header > span::before,
    .network-globe-header > span::after {
        width: 18px;
    }

    .network-globe-header h2 {
        margin-top: 9px;
        font-size: 27px;
    }

    .network-globe-header p {
        margin-top: 9px;
        font-size: 13px;
        line-height: 1.65;
    }

    .network-globe-stage {
        width: calc(100% + 16px);
        margin-top: 20px;
        margin-right: -8px;
        margin-bottom: -18px;
        margin-left: -8px;
    }

    .network-globe-pin {
        width: 8px;
        height: 8px;
        border-width: 1.5px;
        box-shadow: 0 0 0 2px rgba(246, 130, 31, 0.09);
    }

    .network-globe-pin i {
        width: 1.5px;
        height: 1.5px;
    }

    .network-globe-pin.is-core {
        width: 10px;
        height: 10px;
        box-shadow:
            0 0 0 3px rgba(246, 130, 31, 0.15),
            0 0 0 6px rgba(246, 130, 31, 0.07);
    }

    .network-globe-pin em {
        bottom: calc(100% + 9px);
        padding: 6px 8px;
        font-size: 10px;
    }
}

/* Homepage final CTA: transparent illustration used as an integrated background. */
.final-cta-section {
    position: relative;
    min-height: 490px;
    overflow: hidden;
    border-top: 1px solid var(--fun-section-line);
    border-bottom: 1px solid var(--fun-section-line);
    background: #ffffff;
    padding: 0;
}

.final-cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(226, 232, 240, 0.22) 1px, transparent 1px),
        linear-gradient(90deg, rgba(226, 232, 240, 0.22) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: 0.72;
    pointer-events: none;
}

.final-cta-shell {
    position: relative;
    display: flex;
    align-items: center;
    width: min(1280px, calc(100vw - 64px));
    min-height: 490px;
    margin: 0 auto;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 54px 16px;
    box-shadow: none;
}

.final-cta-shell::before {
    content: none;
}

.final-cta-shell::after {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    background: rgba(255, 255, 255, 0.16);
    pointer-events: none;
}

.final-cta-copy {
    position: relative;
    z-index: 3;
    max-width: 565px;
}

.final-cta-kicker {
    min-height: auto;
    margin-bottom: 15px;
    padding-left: 44px;
    font-size: 12px;
}

.final-cta-kicker::before {
    top: 50%;
    bottom: auto;
    width: 34px;
    height: 3px;
    transform: translateY(-50%);
}

.final-cta-copy h2 {
    max-width: 535px;
    margin-bottom: 15px;
    font-size: 43px;
    line-height: 1.13;
}

.final-cta-copy p {
    max-width: 535px;
    font-size: 15px;
    line-height: 1.78;
}

.final-cta-actions {
    gap: 12px;
    margin-top: 25px;
}

.final-cta-actions a {
    min-width: 160px;
    min-height: 48px;
    border-radius: 8px;
    padding-right: 20px;
    padding-left: 20px;
    font-size: 14px;
}

.final-cta-secondary {
    background: rgba(255, 255, 255, 0.82);
}

.final-cta-points {
    gap: 17px;
    margin-top: 23px;
}

.final-cta-points span {
    gap: 8px;
    font-size: 12px;
}

.final-cta-points i {
    width: 6px;
    height: 6px;
}

.final-cta-network {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: auto;
    height: auto;
    margin: 0;
    border: 0;
    border-radius: 0;
    background-color: transparent;
    background-image: url("/web/funidc/static/images/final-network-global-v98.png");
    background-position: calc(50% + 222px) center;
    background-repeat: no-repeat;
    background-size: auto calc(100% - 34px);
    pointer-events: none;
}

@media (max-width: 1023px) {
    .final-cta-section {
        min-height: 500px;
        padding: 0;
    }

    .final-cta-section::before {
        background-size: 60px 60px;
    }

    .final-cta-shell {
        width: calc(100vw - 48px);
        min-height: 500px;
        padding: 42px 0 36px;
    }

    .final-cta-shell::after {
        inset: 0 -24px;
        background: rgba(255, 255, 255, 0.62);
    }

    .final-cta-network {
        inset: 0 -24px;
        height: auto;
        margin: 0;
        border: 0;
        background-position: 54% 72%;
        background-size: auto 80%;
    }
}

@media (max-width: 640px) {
    .final-cta-section {
        min-height: 0;
        padding: 0;
    }

    .final-cta-section::before {
        background-size: 54px 54px;
        opacity: 0.52;
    }

    .final-cta-shell {
        display: block;
        width: calc(100vw - 32px);
        min-height: 0;
        padding: 32px 0 27px;
    }

    .final-cta-shell::after {
        inset: 0 -16px;
        background: rgba(255, 255, 255, 0.73);
    }

    .final-cta-network {
        inset: 0 -16px;
        height: auto;
        margin: 0;
        border: 0;
        border-radius: 0;
        background-position: 52% 78%;
        background-size: auto 92%;
    }

    .final-cta-kicker {
        margin-bottom: 14px;
        padding-left: 35px;
        font-size: 10.5px;
    }

    .final-cta-kicker::before {
        width: 25px;
    }

    .final-cta-copy h2 {
        margin-bottom: 12px;
        font-size: 28px;
    }

    .final-cta-copy p {
        font-size: 12.5px;
        line-height: 1.65;
    }

    .final-cta-actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 8px;
        margin-top: 20px;
    }

    .final-cta-actions a {
        width: 100%;
        min-width: 0;
        min-height: 42px;
        padding-right: 8px;
        padding-left: 8px;
        font-size: 13px;
    }

    .final-cta-points {
        display: flex;
        gap: 7px 11px;
        margin-top: 14px;
    }

    .final-cta-points span {
        font-size: 10px;
    }
}

/* Homepage FAQ: lightweight deployment support block. */
.faq-home-section {
    position: relative;
    overflow: hidden;
    padding: 62px 0 66px;
    background-color: #f8fafd;
    background-image:
        linear-gradient(rgba(224, 232, 242, 0.35) 1px, transparent 1px),
        linear-gradient(90deg, rgba(224, 232, 242, 0.35) 1px, transparent 1px);
    background-size: 72px 72px;
}

.faq-home-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 46%, rgba(255, 127, 22, 0.09), rgba(255, 127, 22, 0) 38%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.70) 82%);
    pointer-events: none;
}

.faq-home-section > div {
    position: relative;
}

.faq-v99-header {
    text-align: center;
}

.faq-v99-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 10px;
    color: #d85d00;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.09em;
}

.faq-v99-kicker::before,
.faq-v99-kicker::after {
    content: "";
    width: 25px;
    height: 1px;
    background: #ff7f16;
}

.faq-v99-header h2 {
    margin: 0;
    color: #0f1b33;
    font-size: 35px;
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: 0.01em;
}

.faq-v99-header p {
    margin: 11px 0 0;
    color: #718096;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.75;
}

.faq-v99-tags {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    margin: 19px auto 29px;
    padding: 0 6px;
}

.faq-v99-tags span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #52627a;
    font-size: 12px;
    font-weight: 800;
}

.faq-v99-tags i {
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border: 1px solid #ffd6ae;
    border-radius: 50%;
    color: #ff7f16;
    background: #ffffff;
    font-size: 10px;
    font-style: normal;
}

.faq-v99-wrap {
    position: relative;
    width: min(920px, 100%);
    margin: 0 auto;
}

.faq-home-section .faq-list {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 10px;
    border: 0;
    counter-reset: homepage-faq;
}

.faq-home-section .faq-item {
    position: relative;
    overflow: hidden;
    margin: 0;
    border: 1px solid #e5ecf4;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 5px 15px rgba(15, 27, 51, 0.035);
    counter-increment: homepage-faq;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.faq-home-section .faq-item + .faq-item {
    border-top: 1px solid #e5ecf4;
}

.faq-home-section .faq-item::before,
.faq-home-section .faq-item::after {
    content: none;
}

.faq-home-section .faq-item[open] {
    border-color: #ffd3a8;
    box-shadow: 0 10px 24px rgba(255, 127, 22, 0.07);
}

.faq-home-section .faq-item[open]::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 3px;
    background: #ff7f16;
}

.faq-home-section .faq-item summary {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 62px;
    padding: 0 50px 0 50px;
    color: #24334e;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.5;
    cursor: pointer;
    list-style: none;
    transition: color 180ms ease;
}

.faq-home-section .faq-item summary::before {
    content: "Q" counter(homepage-faq);
    position: absolute;
    left: 22px;
    color: #ff7f16;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.faq-home-section .faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 20px;
    display: grid;
    place-items: center;
    width: 21px;
    height: 21px;
    border: 0;
    border-radius: 0;
    color: #97a6b9;
    background: transparent;
    box-shadow: none;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    transform: translateY(-50%);
}

.faq-home-section .faq-item:hover summary {
    color: #d85d00;
}

.faq-home-section .faq-item[open] summary {
    color: #d85d00;
}

.faq-home-section .faq-item[open] summary::after {
    content: "\2212";
    color: #ff7f16;
    transform: translateY(-50%);
}

.faq-home-section .faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-home-section .faq-item p {
    max-width: 820px;
    margin: -3px 0 0;
    padding: 0 52px 17px 50px;
    color: #718096;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.85;
}

.faq-v99-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: min(920px, 100%);
    min-height: 62px;
    margin: 17px auto 0;
    padding: 12px 17px 12px 20px;
    border: 1px solid #ffddbd;
    border-radius: 10px;
    background: rgba(255, 248, 241, 0.90);
}

.faq-v99-cta strong {
    color: #33425a;
    font-size: 13px;
    font-weight: 900;
}

.faq-v99-cta span {
    margin-left: 7px;
    color: #8592a4;
    font-size: 12px;
    font-weight: 500;
}

.faq-v99-cta a {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 7px;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 7px;
    color: #ffffff;
    background: #ff7f16;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: background-color 180ms ease;
}

.faq-v99-cta a:hover {
    background: #e96d08;
}

@media (max-width: 640px) {
    .faq-home-section {
        padding: 33px 0 38px;
        background-size: 54px 54px;
    }

    .faq-v99-kicker {
        gap: 8px;
        margin-bottom: 7px;
        font-size: 9px;
    }

    .faq-v99-kicker::before,
    .faq-v99-kicker::after {
        width: 17px;
    }

    .faq-v99-header h2 {
        font-size: 25px;
    }

    .faq-v99-header p {
        margin-top: 8px;
        font-size: 12px;
        line-height: 1.7;
    }

    .faq-v99-tags {
        gap: 10px;
        margin: 14px auto 18px;
    }

    .faq-v99-tags span {
        gap: 5px;
        font-size: 10px;
    }

    .faq-v99-tags i {
        width: 17px;
        height: 17px;
        font-size: 9px;
    }

    .faq-home-section .faq-list {
        gap: 8px;
    }

    .faq-home-section .faq-item {
        border-radius: 8px;
    }

    .faq-home-section .faq-item summary {
        min-height: 53px;
        padding: 0 38px 0 39px;
        font-size: 13px;
    }

    .faq-home-section .faq-item summary::before {
        left: 15px;
        font-size: 10px;
    }

    .faq-home-section .faq-item summary::after {
        right: 13px;
        width: 17px;
        height: 17px;
        font-size: 18px;
    }

    .faq-home-section .faq-item p {
        padding: 0 30px 13px 39px;
        font-size: 11px;
        line-height: 1.75;
    }

    .faq-v99-cta {
        display: block;
        min-height: 0;
        margin-top: 13px;
        padding: 14px;
        border-radius: 8px;
    }

    .faq-v99-cta strong {
        display: block;
        font-size: 12px;
    }

    .faq-v99-cta span {
        display: block;
        margin: 4px 0 10px;
        font-size: 11px;
    }

    .faq-v99-cta a {
        justify-content: center;
        width: 100%;
        min-height: 35px;
    }
}

/* Homepage v100: tighten the global map and mobile page rhythm. */
@media (min-width: 641px) {
    .network-showcase-section {
        padding-top: 4.25rem;
        padding-bottom: 2.5rem;
    }

    .network-globe-stage {
        width: min(1120px, 88%);
        margin-top: 18px;
        margin-bottom: -46px;
    }
}

/* Homepage v102: simplify and align the FAQ block. */
@media (min-width: 641px) {
    .faq-v99-wrap,
    .faq-v99-cta {
        width: min(1120px, 100%);
    }

}

.faq-v99-cta a {
    border: 1px solid #ffb572;
    color: #d85d00;
    background: rgba(255, 255, 255, 0.92);
}

.faq-v99-cta a:hover {
    border-color: #ff9a45;
    color: #c65300;
    background: #fff7ed;
}

@media (max-width: 640px) {
    .network-globe-pin {
        width: 32px;
        height: 32px;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .network-globe-pin::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 8px;
        height: 8px;
        border: 1.5px solid var(--fun-orange);
        border-radius: 50%;
        background: #ffffff;
        box-shadow: 0 0 0 2px rgba(246, 130, 31, 0.09);
        transform: translate(-50%, -50%);
    }

    .network-globe-pin i {
        position: relative;
        z-index: 1;
        width: 1.5px;
        height: 1.5px;
    }

    .network-globe-pin.is-core {
        width: 32px;
        height: 32px;
        box-shadow: none;
    }

    .network-globe-pin.is-core::before {
        width: 10px;
        height: 10px;
        box-shadow:
            0 0 0 3px rgba(246, 130, 31, 0.15),
            0 0 0 6px rgba(246, 130, 31, 0.07);
    }

    .network-globe-pin:hover,
    .network-globe-pin:focus-visible,
    .network-globe-pin.is-active {
        box-shadow: none;
    }

    .network-globe-pin:hover::before,
    .network-globe-pin:focus-visible::before,
    .network-globe-pin.is-active::before {
        box-shadow:
            0 0 0 4px rgba(246, 130, 31, 0.16),
            0 0 0 8px rgba(246, 130, 31, 0.07);
    }

    .network-globe-pin em {
        bottom: calc(50% + 10px);
    }

    .support-section {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .support-problem-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .support-problem-card {
        display: block;
        min-height: 150px;
        padding: 12px;
        border-radius: 12px;
        box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
    }

    .support-problem-icon {
        width: 46px;
        height: 46px;
        margin-bottom: 7px;
    }

    .support-problem-icon img {
        width: 54px;
        height: 54px;
    }

    .support-problem-card h3 {
        margin-bottom: 5px;
        font-size: 14px;
        line-height: 1.35;
    }

    .support-problem-card p {
        display: -webkit-box;
        overflow: hidden;
        font-size: 10.5px;
        line-height: 1.55;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    .faq-v99-cta a {
        color: #d85d00;
        background: #ffffff;
    }
}

/* Homepage v103: make the final signup CTA a natural FAQ follow-up. */
.faq-home-section {
    padding-bottom: 48px;
}

.final-cta-section {
    min-height: 420px;
    border-top: 0;
    background:
        linear-gradient(180deg, #f8fafd 0, rgba(248, 250, 253, 0.72) 24px, #ffffff 96px);
}

.final-cta-shell {
    min-height: 420px;
    padding-top: 38px;
    padding-bottom: 38px;
}

.final-cta-kicker {
    margin-bottom: 12px;
}

.final-cta-copy h2 {
    margin-bottom: 12px;
    font-size: 40px;
}

.final-cta-actions {
    margin-top: 20px;
}

.final-cta-points {
    margin-top: 18px;
}

.final-cta-network {
    background-size: auto calc(100% - 18px);
}

/* Homepage v104: center the symmetric product matrix heading. */
.product-heading-row {
    display: block;
    text-align: center;
}

.product-heading-row p {
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 1023px) {
    .final-cta-section,
    .final-cta-shell {
        min-height: 440px;
    }
}

@media (max-width: 640px) {
    .faq-home-section {
        padding-bottom: 26px;
    }

    .final-cta-section,
    .final-cta-shell {
        min-height: 0;
    }

    .final-cta-shell {
        padding-top: 23px;
        padding-bottom: 20px;
    }

    .final-cta-kicker {
        margin-bottom: 11px;
    }

    .final-cta-copy h2 {
        margin-bottom: 10px;
        font-size: 27px;
    }

    .final-cta-actions {
        margin-top: 16px;
    }

    .final-cta-points {
        margin-top: 11px;
    }

    .final-cta-network {
        background-position: 52% 74%;
        background-size: auto 88%;
    }
}

/* Homepage v105: Remix Icon polish. */
.home-hero-actions a,
.final-cta-primary,
.product-card-link,
.scenario-link,
.faq-v99-cta a {
    gap: 8px;
}

.home-action-icon {
    display: inline-grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
}

.home-hero-secondary .home-action-icon {
    background: rgba(246, 130, 31, 0.10);
}

.home-hero-actions i,
.final-cta-primary i,
.product-card-link i,
.scenario-link i,
.faq-v99-cta a i {
    display: inline-block;
    font-size: 18px;
    line-height: 1;
}

.product-metrics i {
    flex: 0 0 auto;
    color: #475569;
    font-size: 16px;
    line-height: 1;
}

.product-card-link i,
.scenario-link i,
.faq-v99-cta a i,
.final-cta-primary i {
    transition: transform 0.2s ease;
}

.product-card-link:hover i,
.scenario-link:hover i,
.faq-v99-cta a:hover i,
.final-cta-primary:hover i {
    transform: translateX(3px);
}

.scenario-feature-metrics span {
    position: relative;
    overflow: hidden;
}

.scenario-feature-metrics span::after {
    content: "";
    position: absolute;
    right: 11px;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(var(--scenario-accent-rgb), 0.30);
}

.scenario-link {
    gap: 8px;
}

.scenario-card {
    padding-right: 50px;
}

.scenario-card::after {
    content: none;
}

.scenario-card-icon {
    position: absolute;
    right: 18px;
    bottom: 17px;
    color: var(--scenario-accent);
    font-size: 20px;
    line-height: 1;
    opacity: 0.46;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.scenario-card:hover .scenario-card-icon,
.scenario-card.is-active .scenario-card-icon {
    opacity: 1;
    transform: translateX(3px);
}

.scenario-card-badge {
    width: 34px;
    height: 34px;
    padding: 0;
    border-radius: 12px;
    font-size: 18px;
    letter-spacing: 0;
}

.scenario-card-badge i {
    line-height: 1;
}

.network-globe-pin {
    width: 24px;
    height: 24px;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.network-globe-pin::before {
    content: none !important;
}

.network-globe-pin i {
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    color: var(--fun-orange);
    font-size: 19px;
    line-height: 1;
    filter: drop-shadow(0 6px 10px rgba(246, 130, 31, 0.22));
}

.network-globe-pin.is-core {
    width: 28px;
    height: 28px;
    box-shadow: none;
}

.network-globe-pin.is-core i {
    font-size: 23px;
}

.network-globe-pin:hover,
.network-globe-pin:focus-visible,
.network-globe-pin.is-active {
    box-shadow: none;
}

.network-globe-pin:hover i,
.network-globe-pin:focus-visible i,
.network-globe-pin.is-active i {
    color: var(--fun-orange-deep);
    transform: translateY(-2px);
}

.support-card-arrow {
    display: grid;
    place-items: center;
    font-size: 20px;
    line-height: 1;
}

.support-card-arrow i {
    display: block;
    line-height: 1;
}

.faq-v99-tags i {
    font-size: 14px;
    line-height: 1;
}

.faq-v99-cta a b {
    display: inline-flex;
    align-items: center;
    font-weight: inherit;
}

.final-cta-primary {
    display: inline-flex;
    align-items: center;
}

.final-cta-points i {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    color: var(--fun-orange);
    background: rgba(246, 130, 31, 0.10);
    box-shadow: none;
    font-size: 15px;
    line-height: 1;
}

@media (max-width: 640px) {
    .home-action-icon {
        width: 22px;
        height: 22px;
    }

    .scenario-card {
        padding-right: 44px;
    }

    .scenario-card-badge {
        width: 32px;
        height: 32px;
        font-size: 17px;
    }

    .network-globe-pin,
    .network-globe-pin.is-core {
        width: 30px;
        height: 30px;
    }

    .network-globe-pin i {
        width: auto;
        height: auto;
        font-size: 17px;
    }

    .network-globe-pin.is-core i {
        font-size: 21px;
    }

    .final-cta-points i {
        width: 22px;
        height: 22px;
        font-size: 14px;
    }
}

/* Homepage v106: remove decorative AI-looking labels and orphan icons. */
.home-hero-kicker,
.scenario-kicker,
.scenario-visual-label,
.network-globe-header > span,
.faq-v99-kicker,
.faq-v99-tags,
.final-cta-kicker,
.support-card-arrow,
.scenario-card-badge,
.scenario-card-icon {
    display: none !important;
}

.network-showcase-section,
.faq-home-section {
    background-image: none !important;
    background-color: #ffffff;
}

.network-globe-header {
    margin-bottom: 24px;
}

.network-globe-header h2 {
    margin-top: 0;
}

.scenario-card {
    min-height: 112px;
    padding: 20px;
}

.scenario-card::after,
.scenario-feature-metrics span::after,
.faq-home-section .faq-item summary::before,
.faq-home-section .faq-item[open]::before {
    content: none !important;
}

.support-problem-card {
    padding-bottom: 28px;
}

.faq-v99-header {
    margin-bottom: 28px;
}

.faq-v99-wrap {
    margin-top: 0;
}

.faq-home-section .faq-list {
    counter-reset: none;
}

.faq-home-section .faq-item {
    counter-increment: none;
}

.faq-home-section .faq-item[open] {
    border-color: #e5ecf4;
    box-shadow: 0 8px 22px rgba(15, 27, 51, 0.045);
}

.faq-home-section .faq-item summary {
    padding-left: 22px;
    color: #24334e;
}

.faq-home-section .faq-item[open] summary {
    color: #24334e;
}

.faq-home-section .faq-item p {
    padding-left: 22px;
}

.faq-v99-cta {
    border-color: #e5ecf4;
    background: #ffffff;
}

.final-cta-shell {
    padding-top: 56px;
}

@media (max-width: 640px) {
    .scenario-card {
        min-height: 104px;
        padding: 18px;
    }

    .network-globe-header {
        margin-bottom: 18px;
    }

    .faq-v99-header {
        margin-bottom: 20px;
    }

    .faq-home-section .faq-item summary {
        padding-left: 18px;
    }

    .faq-home-section .faq-item p {
        padding-left: 18px;
    }

    .final-cta-shell {
        padding-top: 32px;
    }
}

/* Homepage v107: center homepage section title blocks consistently. */
.scenario-section > .max-w-7xl > .mb-8,
.support-problem-header,
.network-globe-header,
.faq-v99-header,
.product-heading-row {
    display: block;
    text-align: center;
}

.scenario-section > .max-w-7xl > .mb-8 h2,
.support-problem-header h2,
.network-globe-header h2,
.faq-v99-header h2,
.product-heading-row h2 {
    margin-right: auto;
    margin-left: auto;
}

.scenario-section > .max-w-7xl > .mb-8 p,
.support-problem-header p,
.network-globe-header p,
.faq-v99-header p,
.product-heading-row p {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
}

.scenario-section > .max-w-7xl > .mb-8 > a {
    margin-top: 16px;
}

@media (min-width: 768px) {
    .scenario-section > .max-w-7xl > .mb-8 > a {
        display: inline-flex;
    }
}

/* Homepage v108: unify homepage module heading scale. */
.product-heading-row h2,
.scenario-section > .max-w-7xl > .mb-8 h2,
.network-globe-header h2,
.support-problem-header h2,
.faq-v99-header h2 {
    margin-bottom: 12px;
    color: var(--fun-text);
    font-size: clamp(32px, 2.45vw, 38px) !important;
    font-weight: 900;
    line-height: 1.16;
    letter-spacing: 0;
}

.product-heading-row p,
.scenario-section > .max-w-7xl > .mb-8 p,
.network-globe-header p,
.support-problem-header p,
.faq-v99-header p {
    max-width: 780px;
    color: var(--fun-muted);
    font-size: 15px !important;
    font-weight: 600;
    line-height: 1.75;
}

.product-heading-row,
.scenario-section > .max-w-7xl > .mb-8,
.network-globe-header,
.support-problem-header,
.faq-v99-header {
    margin-bottom: 34px;
}

.faq-v99-header {
    margin-bottom: 28px;
}

@media (max-width: 640px) {
    .product-heading-row h2,
    .scenario-section > .max-w-7xl > .mb-8 h2,
    .network-globe-header h2,
    .support-problem-header h2,
    .faq-v99-header h2 {
        margin-bottom: 10px;
        font-size: 27px !important;
        line-height: 1.2;
    }

    .product-heading-row p,
    .scenario-section > .max-w-7xl > .mb-8 p,
    .network-globe-header p,
    .support-problem-header p,
    .faq-v99-header p {
        font-size: 13px !important;
        line-height: 1.72;
    }

    .product-heading-row,
    .scenario-section > .max-w-7xl > .mb-8,
    .network-globe-header,
    .support-problem-header,
    .faq-v99-header {
        margin-bottom: 22px;
    }
}

/* Homepage v109: remove generic module subtitles and give sections more air. */
.product-heading-row,
.scenario-section > .max-w-7xl > .mb-8,
.network-globe-header,
.support-problem-header,
.faq-v99-header {
    width: min(840px, 100%);
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 54px;
}

.product-heading-row h2,
.scenario-section > .max-w-7xl > .mb-8 h2,
.network-globe-header h2,
.support-problem-header h2,
.faq-v99-header h2 {
    margin-bottom: 0;
}

.product-heading-row p,
.scenario-section > .max-w-7xl > .mb-8 p,
.network-globe-header p,
.support-problem-header p,
.faq-v99-header p,
.scenario-section > .max-w-7xl > .mb-8 > a {
    display: none !important;
}

.scenario-section,
.network-showcase-section,
.support-section,
.faq-home-section {
    padding-top: 92px;
    padding-bottom: 92px;
}

.support-problem-grid,
.scenario-shell,
.network-globe-stage,
.faq-v99-wrap {
    margin-top: 0;
}

.scenario-card {
    outline: none;
}

.scenario-card:focus,
.scenario-card:focus-visible {
    outline: none;
    border-color: rgba(246, 130, 31, 0.45);
    box-shadow: 0 0 0 3px rgba(246, 130, 31, 0.12), 0 12px 34px rgba(15, 23, 42, 0.055);
}

.scenario-card.is-active:focus,
.scenario-card.is-active:focus-visible {
    border-color: rgba(246, 130, 31, 0.58);
    box-shadow: 0 0 0 3px rgba(246, 130, 31, 0.12), 0 18px 46px rgba(246, 130, 31, 0.10);
}

@media (max-width: 640px) {
    .product-heading-row,
    .scenario-section > .max-w-7xl > .mb-8,
    .network-globe-header,
    .support-problem-header,
    .faq-v99-header {
        margin-bottom: 30px;
    }

    .scenario-section,
    .network-showcase-section,
    .support-section,
    .faq-home-section {
        padding-top: 58px;
        padding-bottom: 58px;
    }
}

/* Homepage v110: reorder proof flow, rebuild FAQ and final CTA. */
.support-section + .network-showcase-section {
    border-top: 1px solid #e8edf4;
}

.faq-home-section {
    padding-top: 88px;
    padding-bottom: 82px;
    background: #ffffff !important;
}

.faq-home-section::before {
    content: none !important;
}

.faq-v110-grid {
    display: grid;
    grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    width: min(1120px, 100%);
    margin: 0 auto;
}

.faq-v110-contact {
    border: 1px solid #e3e9f2;
    border-radius: 14px;
    background: #f9fbfd;
    padding: 24px;
}

.faq-v110-contact strong {
    display: block;
    color: var(--fun-text);
    font-size: 19px;
    font-weight: 900;
    line-height: 1.35;
}

.faq-v110-contact p {
    margin: 12px 0 18px;
    color: var(--fun-muted);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.75;
}

.faq-v110-contact ul {
    display: grid;
    gap: 10px;
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
}

.faq-v110-contact li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #334155;
    font-size: 13px;
    font-weight: 800;
}

.faq-v110-contact li::before {
    content: "";
    flex: 0 0 auto;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--fun-orange);
}

.faq-v110-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 8px;
    color: #ffffff;
    background: var(--fun-orange);
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    transition: background-color 0.18s ease, transform 0.18s ease;
}

.faq-v110-action:hover {
    color: #ffffff;
    background: var(--fun-orange-deep);
    transform: translateY(-1px);
}

.faq-v99-wrap {
    width: 100%;
    margin: 0;
}

.faq-home-section .faq-list {
    gap: 12px;
}

.faq-home-section .faq-item {
    border-radius: 12px;
    box-shadow: none;
}

.faq-home-section .faq-item[open] {
    border-color: #f3c7a3;
    background: #fffaf5;
    box-shadow: none;
}

.faq-home-section .faq-item summary {
    min-height: 58px;
    padding-right: 52px;
    font-size: 15px;
}

.faq-home-section .faq-item p {
    max-width: none;
    padding-right: 52px;
    padding-bottom: 18px;
    font-size: 13px;
}

.faq-v99-cta {
    display: none !important;
}

.final-cta-section {
    min-height: 0;
    padding: 42px 0;
    border-top: 1px solid #e6edf5;
    background: #f8fafc;
}

.final-cta-section::before,
.final-cta-shell::before,
.final-cta-shell::after,
.final-cta-network {
    content: none !important;
    display: none !important;
}

.final-cta-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    width: min(1184px, calc(100% - 48px));
    min-height: 0;
    margin: 0 auto;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.final-cta-copy {
    max-width: 680px;
    padding: 0;
}

.final-cta-copy h2 {
    margin: 0 0 8px;
    color: var(--fun-text);
    font-size: clamp(28px, 2.2vw, 34px);
    line-height: 1.2;
}

.final-cta-copy p {
    max-width: 680px;
    margin: 0;
    color: var(--fun-muted);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.75;
}

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

.final-cta-actions a {
    min-width: 118px;
    min-height: 44px;
    border-radius: 8px;
    font-size: 14px;
}

.final-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--fun-orange);
    background: #ffffff;
}

.final-cta-secondary:hover {
    color: var(--fun-orange-deep);
    background: #fff7ed;
}

.final-cta-points {
    display: none !important;
}

@media (max-width: 900px) {
    .faq-v110-grid {
        grid-template-columns: 1fr;
    }

    .final-cta-shell {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .faq-home-section {
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .faq-v110-contact {
        padding: 20px;
    }

    .faq-home-section .faq-item summary {
        min-height: 54px;
        padding-right: 44px;
        font-size: 14px;
    }

    .faq-home-section .faq-item p {
        padding-right: 44px;
        font-size: 12px;
    }

    .final-cta-section {
        padding: 34px 0;
    }

    .final-cta-shell {
        width: calc(100% - 32px);
    }

    .final-cta-copy h2 {
        font-size: 25px;
    }

    .final-cta-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .final-cta-actions a {
        width: 100%;
    }
}

/* Homepage v111: make FAQ scan-first, no accordion interaction. */
.faq-v111-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    width: min(1040px, 100%);
    margin: 0 auto;
}

.faq-v111-card {
    min-height: 148px;
    border: 1px solid #e4eaf2;
    border-radius: 12px;
    background: #ffffff;
    padding: 22px 24px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.035);
}

.faq-v111-card h3 {
    margin: 0 0 10px;
    color: var(--fun-text);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.45;
}

.faq-v111-card p {
    margin: 0;
    color: var(--fun-muted);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.78;
}

.faq-v111-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    min-height: 118px;
}

.faq-home-section .faq-v99-wrap,
.faq-home-section .faq-list,
.faq-home-section .faq-item,
.faq-v110-grid,
.faq-v110-contact {
    display: none;
}

@media (max-width: 640px) {
    .faq-v111-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .faq-v111-card,
    .faq-v111-card:last-child:nth-child(odd) {
        min-height: 0;
        padding: 18px;
    }

    .faq-v111-card h3 {
        font-size: 15px;
    }

    .faq-v111-card p {
        font-size: 12px;
    }
}

/* Homepage v112: sharpen IDC credibility and reduce template softness. */
.home-hero-proof {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    max-width: 760px;
    margin-top: 28px;
}

.home-hero-proof span {
    display: block;
    min-height: 74px;
    border: 1px solid rgba(148, 163, 184, 0.30);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.76);
    padding: 13px 14px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.055);
    backdrop-filter: blur(8px);
}

.home-hero-proof strong {
    display: block;
    color: var(--fun-text);
    font-size: 15px;
    font-weight: 900;
    line-height: 1.1;
}

.home-hero-proof em {
    display: block;
    margin-top: 7px;
    color: #56657a;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.45;
}

.product-matrix-card,
.support-problem-card,
.faq-v111-card {
    border-radius: 10px;
}

.product-matrix-card {
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.055);
}

.product-card-copy p,
.support-problem-card p,
.faq-v111-card p {
    color: #52627a;
}

.support-problem-grid {
    gap: 16px;
}

.support-problem-card {
    min-height: 210px;
    padding: 28px 24px 24px;
    box-shadow: none;
}

.support-problem-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}

.support-problem-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 17px;
    border: 0;
    border-radius: 0;
    color: inherit;
    background: transparent;
    overflow: visible;
}

.support-problem-icon i {
    display: none;
}

.support-problem-icon img {
    display: block;
    width: 78px;
    height: 78px;
    max-width: none;
    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(15, 23, 42, 0.07));
}

.network-node-summary {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    width: min(1040px, 100%);
    margin: 12px auto 0;
}

.network-globe-stage {
    z-index: 1;
    width: min(1120px, 100%);
    margin: 26px auto 0;
}

.network-node-summary span {
    display: block;
    border: 1px solid #e4eaf2;
    border-radius: 8px;
    background: #ffffff;
    padding: 15px 16px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.045);
}

.network-node-summary strong {
    display: block;
    color: var(--fun-text);
    font-size: 14px;
    font-weight: 900;
}

.network-node-summary em {
    display: block;
    margin-top: 5px;
    color: var(--fun-muted);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
}

.final-cta-section {
    background: #f6f8fb;
}

@media (max-width: 900px) {
    .home-hero-proof,
    .network-node-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .home-hero-proof {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 22px;
    }

    .home-hero-proof span {
        min-height: 0;
        padding: 12px;
    }

    .support-problem-card {
        min-height: 0;
    }

    .support-problem-icon {
        width: 54px;
        height: 54px;
        margin-bottom: 9px;
    }

    .support-problem-icon img {
        width: 62px;
        height: 62px;
    }

    .network-node-summary {
        grid-template-columns: 1fr;
        gap: 9px;
        margin-top: 12px;
    }
}

/* Homepage v114: business-understanding selector, replacing the old scenario showcase. */
.understand-section {
    padding-top: 88px;
    padding-bottom: 86px;
    background: #f5f6f8;
}

.understand-header {
    max-width: 820px;
    margin: 0 auto 42px;
    text-align: center;
}

.understand-header h2 {
    margin: 0;
    color: var(--fun-text);
    font-size: clamp(34px, 3.2vw, 44px);
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: 0;
}

.understand-header p {
    margin: 14px 0 0;
    color: #606c7d;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.75;
}

.understand-layout {
    display: grid;
    grid-template-columns: minmax(210px, 260px) minmax(0, 1fr);
    gap: 28px;
    align-items: stretch;
    width: min(1180px, 100%);
    margin: 0 auto;
}

.understand-tabs {
    display: grid;
    gap: 12px;
    align-content: start;
}

.understand-tab {
    display: flex;
    align-items: center;
    gap: 18px;
    width: 100%;
    min-height: 72px;
    border: 1px solid rgba(226, 232, 240, 0.96);
    border-radius: 10px;
    color: var(--fun-text);
    background: #ffffff;
    padding: 0 22px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.035);
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
    -webkit-tap-highlight-color: transparent;
}

.understand-tab:hover {
    transform: translateY(-2px);
    border-color: rgba(246, 130, 31, 0.28);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}

.understand-tab.is-active {
    color: #ffffff;
    border-color: var(--fun-orange);
    background: linear-gradient(135deg, var(--fun-orange), #ff8f25);
    box-shadow: 0 18px 36px rgba(246, 130, 31, 0.22);
}

.understand-tab span {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--fun-text);
    background: #f8fafc;
    font-size: 24px;
    transition: color 0.18s ease, background 0.18s ease;
}

.understand-tab.is-active span {
    color: var(--fun-orange);
    background: #ffffff;
}

.understand-tab strong {
    display: block;
    min-width: 0;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.25;
}

.understand-panel {
    min-height: 420px;
    border: 1px solid #dce4ee;
    border-radius: 12px;
    background: #ffffff;
    padding: 42px 48px 40px;
    box-shadow: 0 18px 52px rgba(15, 23, 42, 0.055);
}

.understand-case {
    display: none;
}

.understand-case.is-active {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 338px;
    animation: understandFade 0.22s ease both;
}

.understand-problem {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 10px 42px 0;
    text-align: center;
}

.understand-problem + .understand-problem {
    border-left: 1px solid #e3e9f1;
}

.understand-problem h3 {
    margin: 22px 0 0;
    color: var(--fun-text);
    font-size: 23px;
    font-weight: 900;
    line-height: 1.35;
}

.understand-problem p {
    max-width: 360px;
    margin: 13px auto 0;
    color: #637287;
    font-size: 15px;
    font-weight: 650;
    line-height: 1.85;
}

.understand-illustration {
    position: relative;
    width: min(260px, 100%);
    height: 160px;
    margin: 0 auto;
    color: var(--fun-text);
}

.understand-illustration-monitor > i {
    position: absolute;
    left: 28px;
    top: 22px;
    display: grid;
    place-items: center;
    width: 104px;
    height: 86px;
    border: 3px solid #cbd5e1;
    border-radius: 7px;
    color: rgba(255, 255, 255, 0.92);
    background: linear-gradient(180deg, #1c3859, #0f2138);
    font-size: 52px;
    line-height: 1;
}

.understand-illustration-monitor > i::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    width: 48px;
    height: 18px;
    border-bottom: 8px solid #111827;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    transform: translateX(-50%);
    opacity: 0.15;
}

.understand-alert {
    position: absolute;
    left: 68px;
    top: 48px;
    display: grid;
    place-items: center;
    min-width: 34px;
    height: 34px;
    padding: 0 7px;
    border-radius: 999px;
    color: #173250;
    background: #ffffff;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
}

.understand-server {
    position: absolute;
    right: 30px;
    top: 36px;
    display: grid;
    gap: 6px;
    width: 70px;
}

.understand-server i {
    display: block;
    height: 24px;
    border: 2px solid #cbd5e1;
    border-radius: 6px;
    background: #f8fafc;
    box-shadow: inset 28px 0 0 #e9eef5;
}

.understand-server i::after {
    content: "";
    display: block;
    width: 18px;
    height: 4px;
    margin: 9px 8px 0 auto;
    border-radius: 999px;
    background: #173250;
}

.understand-route {
    position: absolute;
    left: 76px;
    top: 107px;
    width: 112px;
    height: 34px;
    border-bottom: 2px dashed var(--fun-orange);
    border-radius: 50%;
    transform: rotate(-6deg);
}

.understand-route::before {
    content: "";
    position: absolute;
    left: 6px;
    bottom: -5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--fun-orange);
}

.understand-illustration-globe {
    display: grid;
    place-items: center;
}

.understand-illustration-globe > i {
    display: grid;
    place-items: center;
    width: 126px;
    height: 126px;
    border-radius: 50%;
    color: rgba(23, 50, 80, 0.80);
    background:
        radial-gradient(circle at 50% 50%, rgba(226, 232, 240, 0.58), rgba(226, 232, 240, 0.24) 56%, transparent 57%),
        #f7fafc;
    font-size: 68px;
}

.understand-illustration-globe > em {
    position: absolute;
    inset: 42px 22px 40px;
    border: 2px solid rgba(23, 50, 80, 0.42);
    border-top-color: transparent;
    border-radius: 50%;
    transform: rotate(-15deg);
}

.understand-illustration-globe span {
    position: absolute;
    display: block;
    width: 23px;
    height: 31px;
    border-radius: 999px 999px 999px 0;
    background: #173250;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.13);
    transform: rotate(-45deg);
}

.understand-illustration-globe span::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 7px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ffffff;
}

.understand-illustration-globe span:nth-of-type(1) {
    left: 58px;
    top: 42px;
}

.understand-illustration-globe span:nth-of-type(2) {
    right: 68px;
    top: 26px;
}

.understand-illustration-globe span:nth-of-type(3) {
    right: 42px;
    bottom: 36px;
}

@keyframes understandFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .understand-layout {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .understand-tabs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    .understand-tab {
        min-height: 62px;
        justify-content: center;
        padding: 0 12px;
    }

    .understand-tab span {
        width: 34px;
        height: 34px;
        font-size: 20px;
    }

    .understand-tab strong {
        font-size: 15px;
    }

    .understand-panel {
        padding: 34px 28px 32px;
    }
}

@media (max-width: 640px) {
    .understand-section {
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .understand-header {
        margin-bottom: 28px;
    }

    .understand-header h2 {
        font-size: 27px;
    }

    .understand-header p {
        font-size: 13px;
        line-height: 1.7;
    }

    .understand-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
    }

    .understand-tab {
        min-height: 54px;
        gap: 9px;
        border-radius: 9px;
        box-shadow: 0 8px 20px rgba(15, 23, 42, 0.035);
    }

    .understand-tab span {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }

    .understand-tab strong {
        font-size: 13px;
        line-height: 1.2;
    }

    .understand-panel {
        min-height: 0;
        padding: 20px 16px;
        border-radius: 10px;
    }

    .understand-case.is-active {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .understand-problem {
        padding: 18px 8px;
    }

    .understand-problem + .understand-problem {
        border-left: 0;
        border-top: 1px solid #e3e9f1;
    }

    .understand-problem h3 {
        margin-top: 14px;
        font-size: 19px;
    }

    .understand-problem p {
        font-size: 13px;
        line-height: 1.75;
    }

    .understand-illustration {
        width: 220px;
        height: 132px;
    }

    .understand-illustration-monitor > i {
        left: 22px;
        top: 16px;
        width: 88px;
        height: 72px;
        font-size: 42px;
    }

    .understand-alert {
        left: 58px;
        top: 37px;
        min-width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .understand-server {
        right: 22px;
        top: 28px;
        width: 58px;
    }

    .understand-server i {
        height: 20px;
    }

    .understand-route {
        left: 62px;
        top: 88px;
        width: 94px;
    }

    .understand-illustration-globe > i {
        width: 108px;
        height: 108px;
        font-size: 58px;
    }

    .understand-illustration-globe > em {
        inset: 34px 18px 36px;
    }

    .understand-illustration-globe span:nth-of-type(1) {
        left: 48px;
        top: 32px;
    }

    .understand-illustration-globe span:nth-of-type(2) {
        right: 56px;
        top: 20px;
    }

    .understand-illustration-globe span:nth-of-type(3) {
        right: 34px;
        bottom: 28px;
    }
}

/* Homepage v115: replace temporary CSS drawings with real FunIDC-style illustrations. */
.understand-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(330px, 100%);
    height: 186px;
    margin: 0 auto;
    overflow: visible;
}

.understand-illustration img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: translateZ(0);
    transition: transform 0.24s ease, filter 0.24s ease;
    will-change: transform;
}

.understand-problem:hover .understand-illustration img {
    transform: translateY(-3px) scale(1.015);
    filter: drop-shadow(0 18px 24px rgba(15, 23, 42, 0.08));
}

.understand-case.is-active .understand-illustration img {
    animation: understandImageIn 0.32s ease both;
}

@keyframes understandImageIn {
    from {
        opacity: 0;
        transform: translateY(8px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 1024px) {
    .understand-illustration {
        width: min(310px, 100%);
        height: 174px;
    }
}

@media (max-width: 640px) {
    .understand-illustration {
        width: min(280px, 100%);
        height: 158px;
    }
}

/* Homepage v116: compact transparent-image layout. */
.understand-layout {
    grid-template-columns: minmax(210px, 248px) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.understand-tabs {
    gap: 10px;
}

.understand-tab {
    min-height: 64px;
    border-color: rgba(221, 228, 238, 0.96);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.032);
}

.understand-tab:focus,
.understand-tab:focus-visible {
    outline: none;
}

.understand-tab.is-active {
    border-color: rgba(246, 130, 31, 0.72);
    box-shadow: 0 16px 32px rgba(246, 130, 31, 0.18);
}

.understand-panel {
    min-height: 348px;
    padding: 26px 42px 28px;
}

.understand-case.is-active {
    min-height: 292px;
    align-items: start;
}

.understand-problem {
    justify-content: flex-start;
    padding: 0 34px;
}

.understand-illustration {
    width: min(360px, 100%);
    height: 178px;
    margin: 0 auto 8px;
}

.understand-illustration img {
    object-fit: contain;
}

.understand-problem h3 {
    margin-top: 8px;
    font-size: 22px;
}

.understand-problem p {
    margin-top: 9px;
    line-height: 1.72;
}

@media (max-width: 1024px) {
    .understand-layout {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .understand-tab {
        min-height: 58px;
    }

    .understand-panel {
        min-height: 0;
        padding: 24px 24px 26px;
    }

    .understand-case.is-active {
        min-height: 0;
    }

    .understand-problem {
        padding: 0 24px;
    }

    .understand-illustration {
        width: min(330px, 100%);
        height: 164px;
    }
}

@media (max-width: 640px) {
    .understand-tabs {
        gap: 8px;
    }

    .understand-tab {
        min-height: 52px;
    }

    .understand-panel {
        padding: 16px 14px 18px;
    }

    .understand-problem {
        padding: 14px 8px;
    }

    .understand-illustration {
        width: min(270px, 100%);
        height: 146px;
        margin-bottom: 4px;
    }

    .understand-problem h3 {
        margin-top: 8px;
        font-size: 19px;
    }
}

/* Homepage v117: balanced desktop selector height and cleaner section flow. */
@media (min-width: 1025px) {
    .understand-section {
        padding-bottom: 76px;
    }

    .understand-header {
        margin-bottom: 36px;
    }

    .understand-layout {
        align-items: stretch;
    }

    .understand-tabs {
        gap: 9px;
    }

    .understand-tab {
        min-height: 60px;
    }

    .understand-tab span {
        width: 38px;
        height: 38px;
        font-size: 22px;
    }

    .understand-tab strong {
        font-size: 16px;
    }

    .understand-panel {
        height: 405px;
        min-height: 405px;
        padding: 24px 42px;
    }

    .understand-case.is-active {
        height: 100%;
        min-height: 0;
        align-items: stretch;
    }

    .understand-problem {
        justify-content: center;
        padding: 0 36px;
    }

    .understand-illustration {
        width: min(380px, 100%);
        height: 188px;
        margin-bottom: 10px;
    }

    .understand-problem h3 {
        margin-top: 6px;
        font-size: 22px;
    }

    .understand-problem p {
        margin-top: 9px;
        max-width: 350px;
        line-height: 1.7;
    }

    .understand-section + .network-showcase-section {
        border-top: 1px solid #e8eef5;
    }
}

/* Homepage v118: stronger global network copy and larger original map. */
.network-globe-header {
    margin-bottom: 32px;
}

.network-globe-header h2 {
    font-size: clamp(34px, 3vw, 40px);
}

.network-globe-header p {
    display: block !important;
    margin: 14px auto 0;
    max-width: 900px;
    color: #68788b;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.85;
}

.network-globe-stage {
    width: min(1340px, 100%);
    margin: 28px auto 0;
}

.network-node-summary {
    display: none !important;
}

@media (max-width: 640px) {
    .network-globe-header {
        margin-bottom: 22px;
    }

    .network-globe-header h2 {
        font-size: 28px;
    }

    .network-globe-header p {
        font-size: 14px;
        line-height: 1.75;
    }

    .network-globe-stage {
        width: 118%;
        margin-left: -9%;
        margin-right: -9%;
    }
}

/* Homepage v119: tighten the empty space after the enlarged global map. */
.network-showcase-section {
    padding-bottom: 40px;
}

.network-globe-stage {
    margin-top: 22px;
    margin-bottom: -72px;
    overflow: hidden;
    clip-path: inset(0 0 72px 0);
}

@media (max-width: 640px) {
    .network-showcase-section {
        padding-bottom: 44px;
    }

    .network-globe-stage {
        margin-top: 18px;
        margin-bottom: -18px;
        clip-path: inset(0 0 18px 0);
    }
}

/* Homepage v120: calm, enterprise-style hover for global map pins. */
.network-globe-pin::after {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: rgba(246, 130, 31, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: scale(0.6);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.network-globe-pin i {
    transition: color 0.18s ease, filter 0.18s ease, transform 0.18s ease;
}

.network-globe-pin em {
    bottom: calc(100% + 12px);
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 6px;
    color: #ffffff;
    background: rgba(9, 24, 43, 0.92);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0;
    backdrop-filter: blur(10px);
}

.network-globe-pin em::after {
    width: 8px;
    height: 8px;
    border: 0;
    background: rgba(9, 24, 43, 0.92);
    transform: translate(-50%, -4px) rotate(45deg);
}

.network-globe-pin:hover::after,
.network-globe-pin:focus-visible::after,
.network-globe-pin.is-active::after {
    opacity: 1;
    transform: scale(1.75);
}

.network-globe-pin:hover i,
.network-globe-pin:focus-visible i,
.network-globe-pin.is-active i {
    color: #f97316;
    filter: drop-shadow(0 10px 16px rgba(246, 130, 31, 0.26));
    transform: translateY(-1px) scale(1.06);
}

/* Homepage v121: lighter glass hover label to match the site's clean IDC tone. */
.network-globe-pin::after {
    inset: 5px;
    background: rgba(246, 130, 31, 0.12);
}

.network-globe-pin em {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border: 1px solid rgba(214, 225, 235, 0.92);
    border-radius: 7px;
    color: #1e3147;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.10);
    font-size: 11px;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.network-globe-pin em::before {
    content: "";
    width: 6px;
    height: 6px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--fun-orange);
    box-shadow: 0 0 0 4px rgba(246, 130, 31, 0.10);
}

.network-globe-pin em::after {
    border-right: 1px solid rgba(214, 225, 235, 0.92);
    border-bottom: 1px solid rgba(214, 225, 235, 0.92);
    background: rgba(255, 255, 255, 0.94);
}

.network-globe-pin:hover::after,
.network-globe-pin:focus-visible::after,
.network-globe-pin.is-active::after {
    transform: scale(1.45);
}

.network-globe-pin:hover i,
.network-globe-pin:focus-visible i,
.network-globe-pin.is-active i {
    filter: drop-shadow(0 8px 14px rgba(246, 130, 31, 0.22));
    transform: translateY(-1px) scale(1.04);
}

/* Homepage v122: recenter map hover label and remove the leading dot. */
.network-globe-pin:hover,
.network-globe-pin:focus-visible,
.network-globe-pin.is-active {
    z-index: 20;
}

.network-globe-pin em {
    left: 50%;
    bottom: calc(100% + 10px);
    justify-content: center;
    gap: 0;
    min-width: max-content;
    padding: 7px 11px;
    transform: translate(-50%, 5px);
}

.network-globe-pin em::before {
    content: none;
    display: none;
}

.network-globe-pin em::after {
    left: 50%;
    transform: translate(-50%, -4px) rotate(45deg);
}

.network-globe-pin:hover em,
.network-globe-pin:focus-visible em,
.network-globe-pin.is-active em {
    transform: translate(-50%, 0);
}

/* Homepage v123: use small SVG flags in global map hover labels. */
.network-globe-pin em {
    gap: 7px;
    padding-left: 9px;
}

.network-globe-pin em::before {
    content: "";
    display: block;
    width: 18px;
    height: 12px;
    flex: 0 0 18px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 2px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: none;
}

.network-globe-pin[aria-label="中國香港"] em::before {
    background-image: url("/web/funidc/static/images/flag-hk-v123.svg");
}

.network-globe-pin[aria-label="美國"] em::before {
    background-image: url("/web/funidc/static/images/flag-us-v123.svg");
}

.network-globe-pin[aria-label="日本"] em::before {
    background-image: url("/web/funidc/static/images/flag-jp-v123.svg");
}

.network-globe-pin[aria-label="韓國"] em::before {
    background-image: url("/web/funidc/static/images/flag-kr-v123.svg");
}

.network-globe-pin[aria-label="台灣"] em::before {
    background-image: url("/web/funidc/static/images/flag-tw-v123.svg");
}

.network-globe-pin[aria-label="越南"] em::before {
    background-image: url("/web/funidc/static/images/flag-vn-v123.svg");
}

.network-globe-pin[aria-label="馬來西亞"] em::before {
    background-image: url("/web/funidc/static/images/flag-my-v123.svg");
}

.network-globe-pin[aria-label="新加坡"] em::before {
    background-image: url("/web/funidc/static/images/flag-sg-v123.svg");
}

/* Homepage v127: centered copy with a wide background-style hero visual. */
.home-hero-section {
    box-sizing: border-box;
    min-height: 680px;
    background:
        radial-gradient(circle at 78% 36%, rgba(246, 130, 31, 0.10), transparent 30%),
        radial-gradient(circle at 14% 26%, rgba(96, 165, 250, 0.12), transparent 32%),
        linear-gradient(180deg, #fbfdff 0%, #f6f9fd 100%);
    border-bottom: 1px solid #e8eef5;
}

.home-hero-section *,
.home-hero-section *::before,
.home-hero-section *::after {
    box-sizing: border-box;
}

.home-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.025) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.46), transparent 72%);
    pointer-events: none;
}

.home-hero-inner {
    display: block;
    width: min(1120px, calc(100vw - 56px));
    min-height: 680px;
    padding: 60px 24px 92px;
}

.home-hero-track {
    position: relative;
    min-height: 528px;
}

.home-hero-slide {
    position: absolute;
    inset: 0;
    display: block;
    opacity: 0;
    pointer-events: none;
    transform: translateX(18px);
    transition: opacity 0.38s ease, transform 0.38s ease;
}

.home-hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.home-hero-copy {
    position: relative;
    z-index: 4;
    max-width: 650px;
    padding-top: 112px;
}

.home-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 28px;
    margin-bottom: 20px;
    padding: 0 12px;
    border: 1px solid rgba(246, 130, 31, 0.24);
    border-radius: 999px;
    color: #c75f13;
    background: rgba(255, 247, 237, 0.78);
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
}

.home-hero-kicker::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--fun-orange);
    box-shadow: 0 0 0 4px rgba(246, 130, 31, 0.12);
}

.home-hero-copy h1 {
    font-size: 62px;
    line-height: 1.08;
}

.home-hero-copy p {
    max-width: 620px;
    margin-top: 20px;
    color: #52637a;
    font-size: 16px;
    line-height: 1.82;
}

.home-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 21px;
}

.home-hero-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 11px;
    border: 1px solid rgba(203, 213, 225, 0.88);
    border-radius: 999px;
    color: #465973;
    background: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.035);
}

.home-hero-actions {
    margin-top: 28px;
}

.home-hero-actions a {
    min-height: 48px;
    border-radius: 7px;
}

.home-hero-visual {
    position: absolute;
    top: 50%;
    right: clamp(-500px, -22vw, -160px);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: min(1080px, 64vw);
    min-height: 468px;
    margin-right: 0;
    pointer-events: none;
    transform: translateY(-50%);
}

.home-hero-visual::before {
    content: "";
    position: absolute;
    right: 0;
    width: min(860px, 96%);
    height: min(470px, 82%);
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.24) 58%, transparent 70%),
        radial-gradient(circle at 62% 52%, rgba(246, 130, 31, 0.10), transparent 38%);
    filter: blur(1px);
}

.home-hero-visual img {
    position: relative;
    z-index: 2;
    display: block;
    width: min(1080px, 116%);
    max-height: 510px;
    object-fit: contain;
    mix-blend-mode: normal;
    filter: saturate(1.04) contrast(1.02) drop-shadow(0 24px 35px rgba(15, 23, 42, 0.09));
}

.hero-visual-orbit {
    position: absolute;
    z-index: 1;
    border: 1px solid rgba(246, 130, 31, 0.20);
    border-radius: 50%;
    pointer-events: none;
}

.hero-visual-orbit-a {
    right: 4%;
    width: min(720px, 78%);
    height: 220px;
    transform: rotate(-10deg);
}

.hero-visual-orbit-b {
    right: 10%;
    width: min(580px, 64%);
    height: 160px;
    border-color: rgba(100, 116, 139, 0.13);
    transform: rotate(14deg);
}

.hero-visual-badge {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 12px;
    border: 1px solid rgba(214, 226, 238, 0.95);
    border-radius: 7px;
    color: #1e3147;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
    font-size: 12px;
    font-weight: 900;
    backdrop-filter: blur(8px);
}

.hero-visual-badge-cn2 {
    top: 16%;
    left: 18%;
    color: var(--fun-orange-deep);
}

.hero-visual-badge-idc {
    right: 12%;
    bottom: 22%;
}

.hero-visual-badge-ms {
    left: 25%;
    bottom: 16%;
}

.home-hero-progress {
    position: absolute;
    left: 50%;
    bottom: 38px;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    transform: translateX(-50%);
}

.home-hero-progress button {
    position: relative;
    display: block;
    width: 42px;
    height: 14px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.home-hero-progress button:focus {
    outline: none;
}

.home-hero-progress button:focus-visible::before {
    box-shadow: 0 0 0 3px rgba(246, 130, 31, 0.16);
}

.home-hero-progress button::before,
.home-hero-progress span {
    position: absolute;
    left: 0;
    top: 50%;
    height: 3px;
    border-radius: 999px;
    transform: translateY(-50%);
}

.home-hero-progress button::before {
    content: "";
    width: 100%;
    background: #d8e1ec;
}

.home-hero-progress span {
    width: 0;
    background: var(--fun-orange);
}

.home-hero-progress button.is-active span {
    animation: heroProgress 6s linear forwards;
}

@keyframes heroProgress {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@media (max-width: 1180px) {
    .home-hero-inner {
        width: min(1080px, calc(100vw - 36px));
        padding-left: 18px;
        padding-right: 18px;
    }

    .home-hero-visual {
        right: clamp(-310px, -22vw, -100px);
        width: min(820px, 66vw);
    }
}

@media (max-width: 980px) {
    .home-hero-section,
    .home-hero-inner {
        min-height: 700px;
    }

    .home-hero-inner {
        width: min(100%, calc(100vw - 32px));
        padding-top: 38px;
        padding-bottom: 74px;
    }

    .home-hero-track {
        min-height: 588px;
    }

    .home-hero-slide {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .home-hero-copy {
        max-width: 680px;
        padding-top: 0;
        margin: 0 auto;
        text-align: center;
    }

    .home-hero-kicker,
    .home-hero-tags,
    .home-hero-actions {
        justify-content: center;
    }

    .home-hero-copy h1 {
        font-size: 42px;
    }

    .home-hero-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .home-hero-visual {
        position: relative;
        top: auto;
        right: auto;
        z-index: 2;
        justify-content: center;
        width: 100%;
        min-height: 302px;
        margin-right: 0;
        transform: none;
    }

    .home-hero-visual img {
        width: min(680px, 108%);
        max-height: 306px;
    }

}

@media (max-width: 640px) {
    .home-hero-section,
    .home-hero-inner {
        min-height: 640px;
    }

    .home-hero-inner {
        width: 100%;
        padding: 22px 18px 56px;
    }

    .home-hero-track {
        min-height: 560px;
    }

    .home-hero-slide {
        gap: 2px;
    }

    .home-hero-copy {
        max-width: 360px;
        padding-top: 0;
        text-align: left;
    }

    .home-hero-kicker,
    .home-hero-tags,
    .home-hero-actions {
        justify-content: flex-start;
    }

    .home-hero-kicker {
        min-height: 24px;
        margin-bottom: 10px;
        padding: 0 10px;
        font-size: 11px;
    }

    .home-hero-copy h1 {
        font-size: 30px;
        line-height: 1.10;
    }

    .home-hero-copy p {
        max-width: 340px;
        margin-top: 10px;
        font-size: 13px;
        line-height: 1.62;
    }

    .home-hero-tags {
        gap: 6px;
        margin-top: 11px;
    }

    .home-hero-tags span {
        min-height: 25px;
        padding: 0 8px;
        font-size: 11px;
    }

    .home-hero-actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 10px;
        margin-top: 14px;
    }

    .home-hero-actions a {
        width: 100%;
        min-width: 0;
        min-height: 40px;
        padding: 0 10px;
        font-size: 12px;
    }

    .home-hero-actions .home-action-icon {
        width: 24px;
        height: 24px;
    }

    .home-hero-visual {
        width: 100%;
        left: 0;
        min-height: 230px;
        margin-top: 0;
        overflow: visible;
    }

    .home-hero-visual img {
        width: min(452px, 121%);
        max-height: 242px;
    }

    .hero-visual-orbit-a {
        width: min(390px, 100%);
        height: 118px;
    }

    .hero-visual-orbit-b {
        width: min(300px, 78%);
        height: 88px;
    }

    .hero-visual-badge {
        min-height: 26px;
        padding: 0 9px;
        font-size: 10px;
    }

    .hero-visual-badge-cn2 {
        top: 14%;
        left: 4%;
    }

    .hero-visual-badge-idc {
        right: 1%;
        bottom: 25%;
    }

    .hero-visual-badge-ms {
        left: 7%;
        bottom: 16%;
    }

    .home-hero-progress {
        bottom: 20px;
        gap: 11px;
    }

    .home-hero-progress button {
        width: 36px;
    }
}

/* Homepage v128: UCloud-style wide hero, lighter mobile image, and feature panel. */
.home-hero-section {
    position: relative;
    min-height: 656px;
    overflow: visible;
    background:
        radial-gradient(circle at 80% 32%, rgba(246, 130, 31, 0.10), transparent 31%),
        linear-gradient(180deg, #f2f8ff 0%, #fbfdff 70%, #ffffff 100%);
}

.home-hero-section::before {
    background-size: 72px 72px;
    opacity: 0.78;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.58), transparent 78%);
}

.home-hero-inner {
    width: min(1180px, calc(100vw - 80px));
    min-height: 656px;
    padding: 0 0 108px;
}

.home-hero-track {
    min-height: 548px;
}

.home-hero-slide {
    transform: translateX(14px);
    transition: opacity 0.36s ease, transform 0.36s ease;
}

.home-hero-copy {
    position: absolute;
    left: 0;
    top: 152px;
    z-index: 4;
    width: 620px;
    max-width: 620px;
    padding-top: 0;
}

.home-hero-kicker {
    min-height: 30px;
    margin-bottom: 22px;
    padding: 0 12px;
    border-radius: 6px;
    color: #e66c13;
    background: rgba(255, 246, 237, 0.82);
}

.home-hero-kicker::before {
    content: none;
}

.home-hero-copy h1 {
    font-size: 56px;
    line-height: 1.16;
}

.home-hero-copy p {
    max-width: 590px;
    margin-top: 22px;
    color: #52647c;
    font-size: 18px;
    line-height: 1.86;
    font-weight: 700;
}

.home-hero-tags {
    gap: 10px;
    margin-top: 24px;
}

.home-hero-tags span {
    min-height: 31px;
    padding: 0 13px;
    color: #465a75;
    background: rgba(255, 255, 255, 0.72);
}

.home-hero-actions {
    gap: 16px;
    margin-top: 30px;
}

.home-hero-actions a {
    min-height: 52px;
    min-width: 176px;
}

.home-hero-visual {
    top: 76px;
    right: max(118px, calc((100vw - 1760px) / 2));
    z-index: 1;
    align-items: center;
    justify-content: flex-end;
    width: min(1040px, 54vw);
    min-height: 532px;
    transform: none;
}

.home-hero-visual::before,
.hero-visual-orbit,
.hero-visual-badge {
    display: none;
}

.home-hero-visual img {
    width: 100%;
    max-width: none;
    max-height: 532px;
    object-fit: contain;
    object-position: center right;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 26px 40px rgba(18, 36, 61, 0.06));
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 34%, rgba(0, 0, 0, 0.72) 50%, #000 64%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, transparent 34%, rgba(0, 0, 0, 0.72) 50%, #000 64%, #000 100%);
}

.home-hero-progress {
    bottom: 42px;
}

.home-hero-progress button.is-active span {
    animation-duration: 5.8s;
}

.home-hero-feature-panel {
    position: absolute;
    left: 50%;
    bottom: -72px;
    z-index: 6;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(1070px, calc(100vw - 260px));
    min-height: 144px;
    overflow: hidden;
    border: 1px solid #dbe6f2;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 22px 58px rgba(16, 33, 59, 0.08);
    transform: translateX(-50%);
    backdrop-filter: blur(14px);
}

.home-hero-feature {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    padding: 28px;
    border-right: 1px solid #e5edf6;
}

.home-hero-feature:last-child {
    border-right: 0;
}

.home-hero-feature > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    color: var(--fun-orange);
    background: #fff1e5;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
}

.home-hero-feature h3 {
    margin: 0;
    color: #15233a;
    font-size: 18px;
    font-weight: 950;
    line-height: 1.25;
}

.home-hero-feature p {
    margin: 15px 0 0;
    color: #61738c;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.65;
}

.product-section {
    padding-top: 150px;
}

@media (max-width: 1180px) {
    .home-hero-inner {
        width: min(1080px, calc(100vw - 36px));
    }

    .home-hero-visual {
        right: 0;
        width: min(780px, 58vw);
    }

    .home-hero-feature-panel {
        width: min(980px, calc(100vw - 80px));
    }
}

@media (max-width: 980px) {
    .home-hero-section,
    .home-hero-inner {
        min-height: 640px;
    }

    .home-hero-inner {
        width: 100%;
        padding: 0 24px 74px;
    }

    .home-hero-track {
        min-height: 560px;
    }

    .home-hero-copy {
        top: 58px;
        left: 50%;
        width: min(620px, calc(100vw - 48px));
        max-width: none;
        text-align: left;
        transform: translateX(-50%);
    }

    .home-hero-kicker,
    .home-hero-tags,
    .home-hero-actions {
        justify-content: flex-start;
    }

    .home-hero-copy h1 {
        font-size: 44px;
    }

    .home-hero-copy p {
        max-width: 560px;
        font-size: 16px;
    }

    .home-hero-visual {
        top: auto;
        right: -190px;
        bottom: 30px;
        width: 720px;
        min-height: 360px;
        opacity: 0.22;
    }

    .home-hero-visual img {
        max-height: 360px;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .home-hero-feature-panel {
        position: relative;
        left: auto;
        bottom: auto;
        width: min(680px, calc(100vw - 48px));
        margin: -10px auto 0;
        grid-template-columns: 1fr;
        min-height: 0;
        transform: none;
    }

    .home-hero-feature {
        padding: 18px 20px;
        border-right: 0;
        border-bottom: 1px solid #e5edf6;
    }

    .home-hero-feature:not(:first-child) {
        display: none;
    }

    .product-section {
        padding-top: 86px;
    }
}

@media (max-width: 640px) {
    .home-hero-section {
        overflow: hidden;
    }

    .home-hero-section,
    .home-hero-inner {
        min-height: 0;
    }

    .home-hero-inner {
        padding: 0 18px 0;
    }

    .home-hero-track {
        min-height: 382px;
    }

    .home-hero-copy {
        top: 46px;
        width: calc(100vw - 80px);
    }

    .home-hero-kicker {
        min-height: 26px;
        margin-bottom: 18px;
        border-radius: 6px;
        font-size: 12px;
    }

    .home-hero-copy h1 {
        font-size: 35px;
        line-height: 1.12;
    }

    .home-hero-copy p {
        margin-top: 18px;
        font-size: 14px;
        line-height: 1.75;
    }

    .home-hero-tags {
        gap: 8px;
        margin-top: 18px;
    }

    .home-hero-tags span {
        min-height: 28px;
        padding: 0 11px;
        font-size: 12px;
    }

    .home-hero-actions {
        gap: 10px;
        margin-top: 22px;
        width: 100%;
        max-width: 100%;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    .home-hero-actions a {
        min-width: 0;
        min-height: 44px;
        font-size: 13px;
    }

    .home-hero-visual {
        right: -170px;
        bottom: -14px;
        width: 680px;
        min-height: 360px;
        opacity: 0.16;
    }

    .home-hero-progress {
        position: relative;
        left: auto;
        bottom: auto;
        margin: -12px auto 0;
        transform: none;
    }

    .home-hero-feature-panel {
        width: calc(100vw - 36px);
        margin-top: 28px;
        border-left: 0;
        border-right: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .home-hero-feature {
        padding: 20px 18px;
    }

    .home-hero-feature h3 {
        font-size: 16px;
    }

    .home-hero-feature p {
        margin-top: 8px;
        font-size: 12px;
    }

    .product-section {
        padding-top: 58px;
    }
}

/* Homepage v129: remove hero feature cards and keep carousel visuals behind copy. */
.home-hero-section {
    min-height: 620px;
    overflow: hidden;
}

.home-hero-inner {
    min-height: 620px;
    padding-bottom: 72px;
}

.home-hero-track {
    min-height: 520px;
}

.home-hero-progress {
    bottom: 30px;
}

.home-hero-feature-panel {
    display: none !important;
}

.product-section {
    padding-top: 104px;
}

.home-hero-visual img {
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 42%, rgba(0, 0, 0, 0.58) 58%, #000 72%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, transparent 42%, rgba(0, 0, 0, 0.58) 58%, #000 72%, #000 100%);
}

.home-hero-slide:not(:first-child) .home-hero-visual {
    right: max(96px, calc((100vw - 1760px) / 2));
    width: min(920px, 50vw);
    opacity: 0.26;
}

.home-hero-slide:not(:first-child) .home-hero-visual img {
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 56%, rgba(0, 0, 0, 0.42) 70%, #000 84%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, transparent 56%, rgba(0, 0, 0, 0.42) 70%, #000 84%, #000 100%);
}

@media (max-width: 1180px) {
    .home-hero-slide:not(:first-child) .home-hero-visual {
        right: -40px;
        width: min(720px, 55vw);
    }
}

@media (max-width: 980px) {
    .home-hero-section,
    .home-hero-inner {
        min-height: 560px;
    }

    .home-hero-inner {
        padding-bottom: 54px;
    }

    .home-hero-track {
        min-height: 492px;
    }

    .home-hero-progress {
        bottom: 26px;
    }

    .home-hero-slide:not(:first-child) .home-hero-visual {
        right: -240px;
        width: 760px;
        opacity: 0.13;
    }

    .product-section {
        padding-top: 72px;
    }
}

@media (max-width: 640px) {
    .home-hero-section,
    .home-hero-inner {
        min-height: 0;
    }

    .home-hero-inner {
        padding: 0 18px 44px;
    }

    .home-hero-track {
        min-height: 384px;
    }

    .home-hero-copy {
        top: 46px;
        width: calc(100vw - 80px);
    }

    .home-hero-visual,
    .home-hero-slide:not(:first-child) .home-hero-visual {
        right: -190px;
        bottom: -18px;
        width: 690px;
        opacity: 0.12;
    }

    .home-hero-visual img,
    .home-hero-slide:not(:first-child) .home-hero-visual img {
        max-height: 360px;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .home-hero-progress {
        position: absolute;
        left: 50%;
        bottom: 20px;
        margin: 0;
        transform: translateX(-50%);
    }

    .product-section {
        padding-top: 54px;
    }
}

/* Homepage v131: full-bleed slide track and drag-follow carousel. */
.home-hero-section {
    position: relative;
    min-height: clamp(720px, calc(100vh - 92px), 920px);
    overflow: hidden;
    cursor: grab;
    touch-action: pan-y;
    background:
        radial-gradient(circle at 82% 28%, rgba(246, 130, 31, 0.10), transparent 30%),
        linear-gradient(180deg, #f2f8ff 0%, #fbfdff 68%, #ffffff 100%);
}

.home-hero-section.is-dragging {
    cursor: grabbing;
    user-select: none;
}

.home-hero-section::before {
    opacity: 0.68;
}

.home-hero-inner {
    position: relative;
    width: 100%;
    min-height: clamp(720px, calc(100vh - 92px), 920px);
    padding: 0;
    overflow: hidden;
}

.home-hero-track {
    display: flex;
    min-height: inherit;
    width: 100%;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    transition: transform 0.48s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.home-hero-section.is-dragging .home-hero-track {
    transition: none;
}

.home-hero-slide {
    position: relative;
    flex: 0 0 100%;
    min-height: inherit;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
    overflow: hidden;
}

.home-hero-copy {
    position: absolute;
    left: max(24px, calc((100vw - 1180px) / 2));
    top: clamp(52px, 10vh, 140px);
    z-index: 4;
    width: min(620px, calc(100vw - 680px));
    max-width: 620px;
    padding-top: 0;
}

.home-hero-copy h1 {
    font-size: clamp(40px, 3.15vw, 60px);
    line-height: 1.08;
}

.home-hero-copy p {
    max-width: 600px;
    margin-top: 22px;
    color: #52647c;
    font-size: 17px;
    line-height: 1.82;
    font-weight: 700;
}

.home-hero-visual {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    margin-right: 0;
    pointer-events: none;
    transform: none;
    opacity: 1;
}

.home-hero-visual::before,
.hero-visual-orbit,
.hero-visual-badge {
    display: none;
}

.home-hero-visual img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: center right;
    filter: saturate(1.03) contrast(1.01);
    mix-blend-mode: normal;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 14%, rgba(0, 0, 0, 0.72) 32%, #000 48%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, transparent 14%, rgba(0, 0, 0, 0.72) 32%, #000 48%, #000 100%);
}

.home-hero-slide:not(:first-child) .home-hero-visual {
    opacity: 1;
}

.home-hero-slide:not(:first-child) .home-hero-visual img {
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 10%, rgba(0, 0, 0, 0.7) 28%, #000 44%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, transparent 10%, rgba(0, 0, 0, 0.7) 28%, #000 44%, #000 100%);
}

.home-hero-progress {
    bottom: 28px;
}

.home-hero-progress button.is-active span {
    animation-duration: 5.8s;
}

.product-section {
    padding-top: 92px;
}

@media (max-width: 1180px) {
    .home-hero-copy {
        width: min(560px, calc(100vw - 48px));
        top: clamp(52px, 8vh, 120px);
    }

    .home-hero-visual img {
        object-position: center 58%;
    }
}

@media (max-width: 760px) {
    .home-hero-section,
    .home-hero-inner {
        min-height: 0;
    }

    .home-hero-inner {
        padding: 0;
    }

    .home-hero-track {
        min-height: 420px;
    }

    .home-hero-slide {
        min-height: 420px;
    }

    .home-hero-copy {
        left: 20px;
        right: 20px;
        top: 44px;
        width: auto;
        max-width: none;
    }

    .home-hero-copy h1 {
        font-size: 42px;
    }

    .home-hero-visual img {
        object-position: center 62%;
    }

    .home-hero-progress {
        bottom: 18px;
    }

    .product-section {
        padding-top: 64px;
    }
}

@media (max-width: 480px) {
    .home-hero-track,
    .home-hero-slide {
        min-height: 400px;
    }

    .home-hero-copy {
        top: 38px;
    }

    .home-hero-copy h1 {
        font-size: 36px;
    }

    .home-hero-visual img {
        object-position: center 68%;
    }
}

/* Homepage v132: unified hero artwork, shorter fold, stable mobile crop. */
.home-hero-section,
.home-hero-inner {
    min-height: clamp(620px, calc(100vh - 128px), 760px);
}

.home-hero-section {
    background:
        radial-gradient(circle at 82% 30%, rgba(255, 126, 28, 0.11), transparent 32%),
        linear-gradient(180deg, #f3f8ff 0%, #fbfdff 66%, #ffffff 100%);
}

.home-hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(248, 251, 255, 0.98) 0%, rgba(248, 251, 255, 0.86) 28%, rgba(248, 251, 255, 0.26) 54%, rgba(248, 251, 255, 0) 76%);
}

.home-hero-copy {
    top: clamp(40px, 7.2vh, 96px);
    width: min(580px, calc(100vw - 720px));
    max-width: 580px;
}

.home-hero-copy h1 {
    font-size: clamp(38px, 2.92vw, 56px);
    line-height: 1.1;
    letter-spacing: 0;
}

.home-hero-copy p {
    max-width: 560px;
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.72;
}

.home-hero-visual img,
.home-hero-slide:not(:first-child) .home-hero-visual img {
    object-position: center right;
    -webkit-mask-image: none;
    mask-image: none;
    filter: saturate(1.02) contrast(1.01);
}

.home-hero-progress {
    z-index: 5;
    bottom: 22px;
}

.product-section {
    padding-top: 72px;
}

@media (max-width: 1180px) {
    .home-hero-section,
    .home-hero-inner {
        min-height: clamp(580px, calc(100vh - 116px), 700px);
    }

    .home-hero-copy {
        top: clamp(38px, 6.8vh, 86px);
        width: min(540px, calc(100vw - 52px));
    }

    .home-hero-visual img,
    .home-hero-slide:not(:first-child) .home-hero-visual img {
        object-position: 60% center;
    }
}

@media (max-width: 760px) {
    .home-hero-section,
    .home-hero-inner {
        min-height: 0;
    }

    .home-hero-track,
    .home-hero-slide {
        min-height: 520px;
    }

    .home-hero-slide::after {
        background:
            linear-gradient(180deg, rgba(248, 251, 255, 0.98) 0%, rgba(248, 251, 255, 0.94) 44%, rgba(248, 251, 255, 0.56) 74%, rgba(248, 251, 255, 0.16) 100%);
    }

    .home-hero-copy {
        left: 18px;
        right: 18px;
        top: 34px;
        width: auto;
        max-width: none;
    }

    .home-hero-copy h1 {
        font-size: 35px;
        line-height: 1.12;
    }

    .home-hero-copy p {
        max-width: 92vw;
        margin-top: 14px;
        font-size: 13px;
        line-height: 1.62;
    }

    .home-hero-tags {
        margin-top: 18px;
        gap: 8px;
    }

    .home-hero-actions {
        margin-top: 20px;
    }

    .home-hero-visual img,
    .home-hero-slide:not(:first-child) .home-hero-visual img {
        object-position: 64% center;
    }

    .home-hero-progress {
        bottom: 16px;
    }

    .product-section {
        padding-top: 52px;
    }
}

@media (max-width: 480px) {
    .home-hero-track,
    .home-hero-slide {
        min-height: 500px;
    }

    .home-hero-copy {
        top: 30px;
    }

    .home-hero-copy h1 {
        font-size: 32px;
    }

    .home-hero-visual img,
    .home-hero-slide:not(:first-child) .home-hero-visual img {
        object-position: 66% center;
    }
}

/* Homepage v133: one hero image system across all slides, compact first fold. */
.home-hero-section,
.home-hero-inner {
    height: clamp(560px, calc(100vh - 260px), 680px);
    min-height: clamp(560px, calc(100vh - 260px), 680px);
}

.home-hero-track,
.home-hero-slide {
    height: 100%;
    min-height: 100%;
}

.home-hero-slide::after {
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(248, 251, 255, 0.98) 0%, rgba(248, 251, 255, 0.88) 28%, rgba(248, 251, 255, 0.22) 55%, rgba(248, 251, 255, 0) 76%);
}

.home-hero-copy {
    top: clamp(56px, 7.6vh, 96px);
    width: min(570px, calc(100vw - 720px));
    max-width: 570px;
}

.home-hero-copy h1 {
    font-size: clamp(36px, 2.75vw, 52px);
    line-height: 1.1;
}

.home-hero-copy p {
    max-width: 540px;
    margin-top: 16px;
    font-size: 15.5px;
    line-height: 1.68;
}

.home-hero-tags {
    margin-top: 20px;
}

.home-hero-actions {
    margin-top: 24px;
}

.home-hero-visual img,
.home-hero-slide:not(:first-child) .home-hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    -webkit-mask-image: none;
    mask-image: none;
}

.home-hero-progress {
    bottom: 18px;
}

.product-section {
    padding-top: 54px;
}

@media (max-width: 1180px) {
    .home-hero-section,
    .home-hero-inner {
        height: clamp(540px, calc(100vh - 230px), 640px);
        min-height: clamp(540px, calc(100vh - 230px), 640px);
    }

    .home-hero-copy {
        top: clamp(46px, 7vh, 82px);
        width: min(520px, calc(100vw - 48px));
    }

    .home-hero-visual img,
    .home-hero-slide:not(:first-child) .home-hero-visual img {
        object-position: 62% center;
    }
}

@media (max-width: 760px) {
    .home-hero-section,
    .home-hero-inner,
    .home-hero-track,
    .home-hero-slide {
        height: 500px;
        min-height: 500px;
    }

    .home-hero-slide::after {
        background:
            linear-gradient(180deg, rgba(248, 251, 255, 0.99) 0%, rgba(248, 251, 255, 0.95) 46%, rgba(248, 251, 255, 0.58) 75%, rgba(248, 251, 255, 0.18) 100%);
    }

    .home-hero-copy {
        left: 18px;
        right: 18px;
        top: 30px;
        width: auto;
        max-width: none;
    }

    .home-hero-copy h1 {
        font-size: 32px;
        line-height: 1.12;
    }

    .home-hero-copy p {
        max-width: 92vw;
        margin-top: 12px;
        font-size: 13px;
        line-height: 1.58;
    }

    .home-hero-tags {
        margin-top: 16px;
    }

    .home-hero-actions {
        margin-top: 18px;
    }

    .home-hero-visual img,
    .home-hero-slide:not(:first-child) .home-hero-visual img {
        object-position: 64% center;
    }

    .home-hero-progress {
        bottom: 14px;
    }

    .product-section {
        padding-top: 44px;
    }
}

@media (max-width: 480px) {
    .home-hero-section,
    .home-hero-inner,
    .home-hero-track,
    .home-hero-slide {
        height: 480px;
        min-height: 480px;
    }

    .home-hero-copy {
        top: 28px;
    }

    .home-hero-copy h1 {
        font-size: 30px;
    }

    .home-hero-visual img,
    .home-hero-slide:not(:first-child) .home-hero-visual img {
        object-position: 66% center;
    }
}

/* Homepage v134: compact shared hero style for frontend and future console pages. */
.home-hero-section,
.home-hero-inner {
    height: clamp(520px, 58vh, 620px);
    min-height: clamp(520px, 58vh, 620px);
}

.home-hero-section {
    background:
        radial-gradient(circle at 80% 28%, rgba(255, 126, 28, 0.10), transparent 30%),
        linear-gradient(180deg, #f3f8ff 0%, #fbfdff 68%, #ffffff 100%);
}

.home-hero-track,
.home-hero-slide,
.home-hero-visual {
    height: 100%;
    min-height: 100%;
}

.home-hero-slide::after {
    background:
        linear-gradient(90deg, rgba(248, 251, 255, 0.98) 0%, rgba(248, 251, 255, 0.88) 27%, rgba(248, 251, 255, 0.18) 54%, rgba(248, 251, 255, 0) 76%);
}

.home-hero-copy {
    top: clamp(42px, 7vh, 78px);
    width: min(560px, calc(100vw - 720px));
    max-width: 560px;
}

.home-hero-copy h1 {
    font-size: clamp(34px, 2.55vw, 48px);
    line-height: 1.1;
}

.home-hero-copy p {
    max-width: 530px;
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.66;
}

.home-hero-tags {
    margin-top: 18px;
}

.home-hero-actions {
    margin-top: 22px;
}

.home-hero-visual img,
.home-hero-slide:not(:first-child) .home-hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    -webkit-mask-image: none;
    mask-image: none;
}

.home-hero-progress {
    bottom: 14px;
}

.product-section {
    padding-top: 42px;
}

@media (max-width: 1180px) {
    .home-hero-section,
    .home-hero-inner {
        height: clamp(500px, 56vh, 590px);
        min-height: clamp(500px, 56vh, 590px);
    }

    .home-hero-copy {
        top: clamp(38px, 6.5vh, 70px);
        width: min(520px, calc(100vw - 48px));
    }

    .home-hero-visual img,
    .home-hero-slide:not(:first-child) .home-hero-visual img {
        object-position: 62% center;
    }
}

@media (max-width: 760px) {
    .home-hero-section,
    .home-hero-inner,
    .home-hero-track,
    .home-hero-slide,
    .home-hero-visual {
        height: 470px;
        min-height: 470px;
    }

    .home-hero-slide::after {
        background:
            linear-gradient(180deg, rgba(248, 251, 255, 0.99) 0%, rgba(248, 251, 255, 0.95) 44%, rgba(248, 251, 255, 0.56) 74%, rgba(248, 251, 255, 0.18) 100%);
    }

    .home-hero-copy {
        left: 18px;
        right: 18px;
        top: 26px;
        width: auto;
        max-width: none;
    }

    .home-hero-copy h1 {
        font-size: 29px;
        line-height: 1.12;
    }

    .home-hero-copy p {
        max-width: 92vw;
        margin-top: 10px;
        font-size: 12.5px;
        line-height: 1.54;
    }

    .home-hero-tags {
        margin-top: 14px;
        gap: 7px;
    }

    .home-hero-actions {
        margin-top: 16px;
    }

    .home-hero-visual img,
    .home-hero-slide:not(:first-child) .home-hero-visual img {
        object-position: 66% center;
    }

    .home-hero-progress {
        bottom: 12px;
    }

    .product-section {
        padding-top: 38px;
    }
}

@media (max-width: 480px) {
    .home-hero-section,
    .home-hero-inner,
    .home-hero-track,
    .home-hero-slide,
    .home-hero-visual {
        height: 450px;
        min-height: 450px;
    }

    .home-hero-copy {
        top: 24px;
    }

    .home-hero-copy h1 {
        font-size: 28px;
    }

    .home-hero-visual img,
    .home-hero-slide:not(:first-child) .home-hero-visual img {
        object-position: 68% center;
    }
}

/* Homepage v152: allow long translated scenario copy to grow without escaping cards. */
@media (min-width: 1025px) {
    .understand-panel {
        height: auto;
        min-height: 405px;
        padding-bottom: 34px;
        overflow: visible;
    }

    .understand-case.is-active {
        height: auto;
        min-height: 356px;
        align-items: stretch;
    }

    .understand-problem {
        min-height: 356px;
        justify-content: flex-start;
        padding: 0 30px 8px;
    }

    .understand-problem h3,
    .understand-problem p {
        overflow-wrap: anywhere;
        hyphens: auto;
    }

    html[lang^="en"] .understand-illustration {
        height: 168px;
        margin-bottom: 8px;
        flex: 0 0 168px;
    }

    html[lang^="en"] .understand-problem h3 {
        font-size: 20px;
        line-height: 1.25;
    }

    html[lang^="en"] .understand-problem p {
        max-width: 380px;
        font-size: 14px;
        line-height: 1.58;
    }
}

/* Homepage v151: restore the full-width hero carousel controls and track motion. */
.home-hero-section[data-hero-carousel] {
    cursor: grab;
    overflow: hidden;
    touch-action: pan-y;
}

.home-hero-section[data-hero-carousel].is-dragging {
    cursor: grabbing;
    user-select: none;
}

.home-hero-section[data-hero-carousel] .home-hero-inner {
    overflow: hidden;
}

.home-hero-section[data-hero-carousel] .home-hero-track {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 100%;
    transform: translate3d(0, 0, 0);
    transition: transform 0.48s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
}

.home-hero-section[data-hero-carousel].is-dragging .home-hero-track {
    transition: none;
}

.home-hero-section[data-hero-carousel] .home-hero-slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    opacity: 1;
    pointer-events: auto;
    transform: none;
}

.home-hero-section[data-hero-carousel] .home-hero-progress {
    z-index: 20;
    display: flex !important;
    opacity: 1 !important;
    pointer-events: auto;
}

.home-hero-section[data-hero-carousel] .home-hero-progress button {
    display: block;
}

/* Homepage v139: final live override. Keep all slides unified and move PC/mobile visual weight down. */
@media (min-width: 761px) {
    .home-hero-section,
    .home-hero-inner {
        height: clamp(540px, 58vh, 620px) !important;
        min-height: clamp(540px, 58vh, 620px) !important;
        overflow: hidden !important;
    }

    .home-hero-copy,
    .home-hero-slide:not(:first-child) .home-hero-copy {
        top: clamp(92px, 10.6vh, 132px) !important;
    }

    .home-hero-visual,
    .home-hero-slide:not(:first-child) .home-hero-visual {
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        max-width: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .home-hero-visual img,
    .home-hero-slide:not(:first-child) .home-hero-visual img {
        width: 100% !important;
        height: 100% !important;
        max-width: none !important;
        max-height: none !important;
        object-fit: cover !important;
        object-position: center 20% !important;
        transform: none !important;
        opacity: 1 !important;
        -webkit-mask-image: none !important;
        mask-image: none !important;
    }

    .home-hero-slide::after {
        background:
            linear-gradient(90deg, rgba(248, 251, 255, 0.99) 0%, rgba(248, 251, 255, 0.92) 30%, rgba(248, 251, 255, 0.24) 56%, rgba(248, 251, 255, 0) 78%) !important;
    }

    .home-hero-progress {
        bottom: 18px !important;
    }

    .product-section {
        padding-top: 46px !important;
    }
}

@media (min-width: 1181px) {
    .home-hero-copy,
    .home-hero-slide:not(:first-child) .home-hero-copy {
        top: clamp(102px, 11vh, 142px) !important;
    }
}

@media (max-width: 760px) {
    .home-hero-section,
    .home-hero-inner,
    .home-hero-track,
    .home-hero-slide,
    .home-hero-visual,
    .home-hero-slide:not(:first-child) .home-hero-visual {
        height: 430px !important;
        min-height: 430px !important;
    }

    .home-hero-copy,
    .home-hero-slide:not(:first-child) .home-hero-copy {
        top: 40px !important;
    }

    .home-hero-copy h1,
    .home-hero-slide:not(:first-child) .home-hero-copy h1 {
        font-size: 29px !important;
        line-height: 1.15 !important;
    }

    .home-hero-copy p,
    .home-hero-slide:not(:first-child) .home-hero-copy p {
        margin-top: 12px !important;
        font-size: 13px !important;
        line-height: 1.62 !important;
    }

    .home-hero-tags {
        margin-top: 16px !important;
        gap: 8px !important;
    }

    .home-hero-actions {
        margin-top: 18px !important;
        gap: 12px !important;
    }

    .home-hero-visual img,
    .home-hero-slide:not(:first-child) .home-hero-visual img {
        object-position: 70% bottom !important;
        transform: translateY(26px) !important;
    }

    .home-hero-slide::after {
        background:
            linear-gradient(180deg, rgba(248, 251, 255, 1) 0%, rgba(248, 251, 255, 0.98) 50%, rgba(248, 251, 255, 0.7) 76%, rgba(248, 251, 255, 0.24) 100%) !important;
    }

    .home-hero-progress {
        bottom: 10px !important;
    }

    .product-section {
        padding-top: 30px !important;
    }
}

@media (max-width: 480px) {
    .home-hero-section,
    .home-hero-inner,
    .home-hero-track,
    .home-hero-slide,
    .home-hero-visual,
    .home-hero-slide:not(:first-child) .home-hero-visual {
        height: 420px !important;
        min-height: 420px !important;
    }

    .home-hero-copy,
    .home-hero-slide:not(:first-child) .home-hero-copy {
        top: 38px !important;
    }
}

/* Homepage v136: mobile hero breathes more while taking less vertical space. */
@media (max-width: 760px) {
    .home-hero-section,
    .home-hero-inner,
    .home-hero-track,
    .home-hero-slide,
    .home-hero-visual,
    .home-hero-slide:not(:first-child) .home-hero-visual {
        height: 430px;
        min-height: 430px;
    }

    .home-hero-slide::after {
        background:
            linear-gradient(180deg, rgba(248, 251, 255, 1) 0%, rgba(248, 251, 255, 0.98) 43%, rgba(248, 251, 255, 0.78) 66%, rgba(248, 251, 255, 0.28) 100%),
            linear-gradient(90deg, rgba(248, 251, 255, 0.98) 0%, rgba(248, 251, 255, 0.8) 44%, rgba(248, 251, 255, 0) 100%);
    }

    .home-hero-copy,
    .home-hero-slide:not(:first-child) .home-hero-copy {
        top: 28px;
    }

    .home-hero-copy h1,
    .home-hero-slide:not(:first-child) .home-hero-copy h1 {
        font-size: 30px;
        line-height: 1.16;
    }

    .home-hero-copy p,
    .home-hero-slide:not(:first-child) .home-hero-copy p {
        margin-top: 12px;
        font-size: 13px;
        line-height: 1.66;
    }

    .home-hero-tags {
        margin-top: 17px;
        gap: 8px;
    }

    .home-hero-tags span {
        min-height: 32px;
        padding: 0 13px;
    }

    .home-hero-actions {
        gap: 12px;
        margin-top: 18px;
    }

    .home-hero-actions a {
        flex: 1 1 0;
        min-width: 0;
        min-height: 52px;
        padding: 0 12px;
    }

    .home-hero-visual,
    .home-hero-slide:not(:first-child) .home-hero-visual {
        opacity: 0.82;
    }

    .home-hero-visual img,
    .home-hero-slide:not(:first-child) .home-hero-visual img {
        object-position: 70% bottom;
    }

    .home-hero-progress {
        bottom: 10px;
    }

    .product-section {
        padding-top: 30px;
    }
}

@media (max-width: 480px) {
    .home-hero-section,
    .home-hero-inner,
    .home-hero-track,
    .home-hero-slide,
    .home-hero-visual,
    .home-hero-slide:not(:first-child) .home-hero-visual {
        height: 420px;
        min-height: 420px;
    }

    .home-hero-copy,
    .home-hero-slide:not(:first-child) .home-hero-copy {
        top: 24px;
    }

    .home-hero-copy h1,
    .home-hero-slide:not(:first-child) .home-hero-copy h1 {
        font-size: 29px;
    }

    .home-hero-copy p,
    .home-hero-slide:not(:first-child) .home-hero-copy p {
        font-size: 12.8px;
    }

    .product-section {
        padding-top: 28px;
    }
}

/* Homepage v137: lower the desktop hero composition without making the fold taller. */
@media (min-width: 761px) {
    .home-hero-copy,
    .home-hero-slide:not(:first-child) .home-hero-copy {
        top: clamp(58px, 8.6vh, 104px);
    }

    .home-hero-visual img,
    .home-hero-slide:not(:first-child) .home-hero-visual img {
        object-position: 100% 42%;
    }

    .home-hero-progress {
        bottom: 16px;
    }

    .product-section {
        padding-top: 50px;
    }
}

@media (min-width: 1181px) {
    .home-hero-copy,
    .home-hero-slide:not(:first-child) .home-hero-copy {
        top: clamp(66px, 9vh, 112px);
    }
}

/* Homepage v138: desktop uses the shared hero art as a framed visual field, not a cropped slab. */
@media (min-width: 761px) {
    .home-hero-section,
    .home-hero-inner {
        height: clamp(540px, 58vh, 620px);
        min-height: clamp(540px, 58vh, 620px);
        background:
            radial-gradient(circle at 82% 30%, rgba(255, 126, 28, 0.08), transparent 32%),
            linear-gradient(180deg, #f4f9ff 0%, #fbfdff 68%, #ffffff 100%);
    }

    .home-hero-copy,
    .home-hero-slide:not(:first-child) .home-hero-copy {
        top: clamp(74px, 9.4vh, 116px);
    }

    .home-hero-visual img,
    .home-hero-slide:not(:first-child) .home-hero-visual img {
        object-fit: contain;
        object-position: 76% center;
    }

    .home-hero-slide::after {
        background:
            linear-gradient(90deg, rgba(248, 251, 255, 0.99) 0%, rgba(248, 251, 255, 0.92) 28%, rgba(248, 251, 255, 0.34) 48%, rgba(248, 251, 255, 0) 68%);
    }
}

@media (min-width: 1181px) {
    .home-hero-copy,
    .home-hero-slide:not(:first-child) .home-hero-copy {
        top: clamp(82px, 9.8vh, 124px);
    }
}

/* Homepage v135: remove legacy per-slide drift; every hero slide shares one visual system. */
.home-hero-section,
.home-hero-inner {
    height: clamp(520px, 58vh, 620px);
    min-height: clamp(520px, 58vh, 620px);
    overflow: hidden;
}

.home-hero-inner {
    padding: 0;
}

.home-hero-track {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 100%;
}

.home-hero-slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    min-height: 100%;
    overflow: hidden;
}

.home-hero-visual,
.home-hero-slide:not(:first-child) .home-hero-visual {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 100%;
    margin: 0;
    opacity: 1;
    transform: none;
}

.home-hero-visual img,
.home-hero-slide:not(:first-child) .home-hero-visual img {
    display: block;
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: center right;
    opacity: 1;
    transform: none;
    -webkit-mask-image: none;
    mask-image: none;
}

.home-hero-slide::after {
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(248, 251, 255, 0.98) 0%, rgba(248, 251, 255, 0.88) 27%, rgba(248, 251, 255, 0.18) 54%, rgba(248, 251, 255, 0) 76%);
}

.home-hero-copy,
.home-hero-slide:not(:first-child) .home-hero-copy {
    left: max(24px, calc((100vw - 1180px) / 2));
    top: clamp(42px, 7vh, 78px);
    z-index: 4;
    width: min(560px, calc(100vw - 720px));
    max-width: 560px;
    padding: 0;
    opacity: 1;
    transform: none;
}

.home-hero-copy h1,
.home-hero-slide:not(:first-child) .home-hero-copy h1 {
    font-size: clamp(34px, 2.55vw, 48px);
    line-height: 1.1;
}

.home-hero-copy p,
.home-hero-slide:not(:first-child) .home-hero-copy p {
    max-width: 530px;
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.66;
}

.home-hero-progress {
    bottom: 14px;
}

.product-section {
    padding-top: 42px;
}

@media (max-width: 1180px) {
    .home-hero-section,
    .home-hero-inner {
        height: clamp(500px, 56vh, 590px);
        min-height: clamp(500px, 56vh, 590px);
    }

    .home-hero-copy,
    .home-hero-slide:not(:first-child) .home-hero-copy {
        left: 24px;
        top: clamp(38px, 6.5vh, 70px);
        width: min(520px, calc(100vw - 48px));
        max-width: 520px;
    }

    .home-hero-visual img,
    .home-hero-slide:not(:first-child) .home-hero-visual img {
        object-position: 62% center;
    }
}

@media (max-width: 760px) {
    .home-hero-section,
    .home-hero-inner,
    .home-hero-track,
    .home-hero-slide,
    .home-hero-visual,
    .home-hero-slide:not(:first-child) .home-hero-visual {
        height: 470px;
        min-height: 470px;
    }

    .home-hero-slide::after {
        background:
            linear-gradient(180deg, rgba(248, 251, 255, 0.99) 0%, rgba(248, 251, 255, 0.95) 44%, rgba(248, 251, 255, 0.56) 74%, rgba(248, 251, 255, 0.18) 100%);
    }

    .home-hero-copy,
    .home-hero-slide:not(:first-child) .home-hero-copy {
        left: 18px;
        right: 18px;
        top: 26px;
        width: auto;
        max-width: none;
    }

    .home-hero-copy h1,
    .home-hero-slide:not(:first-child) .home-hero-copy h1 {
        font-size: 29px;
        line-height: 1.12;
    }

    .home-hero-copy p,
    .home-hero-slide:not(:first-child) .home-hero-copy p {
        max-width: 92vw;
        margin-top: 10px;
        font-size: 12.5px;
        line-height: 1.54;
    }

    .home-hero-visual img,
    .home-hero-slide:not(:first-child) .home-hero-visual img {
        object-position: 66% center;
    }

    .home-hero-progress {
        bottom: 12px;
    }
}

@media (max-width: 480px) {
    .home-hero-section,
    .home-hero-inner,
    .home-hero-track,
    .home-hero-slide,
    .home-hero-visual,
    .home-hero-slide:not(:first-child) .home-hero-visual {
        height: 450px;
        min-height: 450px;
    }

    .home-hero-copy,
    .home-hero-slide:not(:first-child) .home-hero-copy {
        top: 24px;
    }

    .home-hero-copy h1,
    .home-hero-slide:not(:first-child) .home-hero-copy h1 {
        font-size: 28px;
    }

    .home-hero-visual img,
    .home-hero-slide:not(:first-child) .home-hero-visual img {
        object-position: 68% center;
    }
}

