:root {
    --city-blue: #0b75ff;
    --city-blue-2: #43a8ff;
    --city-deep: #031126;
    --city-deeper: #010b1d;
    --city-ink: #082756;
    --city-muted: #637696;
    --city-line: #dce8f8;
    --city-soft: #f5f9ff;
    --city-panel: #071d3f;
}

.ai-city-page {
    color: var(--city-ink);
    background: #fff;
}

.city-main {
    overflow: hidden;
}

.city-section {
    padding: 96px 0;
}

.city-section-label,
.city-kicker {
    display: inline-flex;
    color: #248bff;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .15em;
}

.city-heading {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.city-heading-compact {
    max-width: 1080px;
}

.city-heading h2 {
    margin: 16px 0 0;
    color: var(--city-ink);
    font-size: 34px;
    line-height: 1.22;
    font-weight: 800;
    letter-spacing: -.02em;
}

.city-heading p {
    max-width: 760px;
    margin: 18px auto 0;
    color: var(--city-muted);
    font-size: 16px;
    line-height: 1.75;
}

.city-hero {
    position: relative;
    height: 550px;
    min-height: 550px;
    overflow: hidden;
    padding: 0;
    color: #fff;
    background: #03142d;
    isolation: isolate;
}

.city-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background-image: var(--city-hero-image, url('/static/upload/image/20260804/ai-city-banner-bg-v2.webp'));
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.city-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(0, 9, 28, .52) 0%, rgba(0, 12, 34, .38) 34%, rgba(0, 13, 36, .08) 48%, transparent 60%);
}

.city-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    padding-top: 80px;
}

.city-hero-copy {
    min-width: 0;
    width: 44%;
    max-width: 720px;
    margin: 0;
    text-align: left;
}

.city-hero h1 {
    margin: 0;
    color: #fff;
    font-size: 52px;
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -.02em;
    text-shadow: 0 0 26px rgba(89, 157, 255, .34);
}

.city-hero-lead {
    max-width: 720px;
    margin: 14px 0 0;
    color: rgba(224, 237, 255, .9);
    font-size: 24px;
    line-height: 1.35;
    font-weight: 700;
}

.city-hero-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px 16px;
    width: min(640px, 100%);
    margin: 20px 0 0;
}

.city-hero-feature-grid > span {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 56px;
    padding: 0 15px;
    border: 1px solid rgba(24, 132, 255, .52);
    border-radius: 8px;
    color: #edf6ff;
    background: rgba(3, 23, 57, .62);
    box-shadow: inset 0 0 24px rgba(10, 90, 205, .08);
    text-align: left;
}

.city-hero-feature-grid svg {
    flex: 0 0 27px;
    width: 27px;
    height: 27px;
    fill: none;
    stroke: #149bff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.city-hero-feature-grid b {
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.city-hero-desc {
    max-width: 900px;
    margin: 14px 0 0;
    color: rgba(232, 243, 255, .82);
    font-size: 17px;
    line-height: 1.75;
}

.city-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.city-hero-tags span {
    padding: 7px 12px;
    border: 1px solid rgba(104, 184, 255, .29);
    border-radius: 999px;
    color: #d8edff;
    background: rgba(19, 91, 184, .12);
    font-size: 13px;
    font-weight: 700;
}

.city-actions {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 24px;
    width: min(600px, 100%);
    margin: 18px 0 0;
}

.city-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 54px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.city-btn > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
}

.city-btn-primary > span {
    color: #1679ef;
    background: #fff;
}

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

.city-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #2993ff, #0870f8);
    box-shadow: 0 16px 34px rgba(13, 110, 253, .3);
}

.city-btn-outline {
    color: #e5f3ff;
    border-color: rgba(139, 198, 255, .62);
    background: rgba(3, 21, 52, .56);
}

.city-console {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(90, 173, 255, .32);
    border-radius: 22px;
    background: rgba(3, 17, 41, .82);
    box-shadow: 0 38px 90px rgba(0, 7, 23, .58), inset 0 1px 0 rgba(255, 255, 255, .03);
    backdrop-filter: blur(14px);
}

.city-console-topbar {
    display: grid;
    grid-template-columns: 82px 1fr auto;
    align-items: center;
    min-height: 52px;
    padding: 0 18px;
    border-bottom: 1px solid rgba(84, 162, 255, .18);
    background: linear-gradient(180deg, rgba(12, 45, 91, .88), rgba(6, 28, 62, .88));
}

.city-console-topbar strong {
    color: #eaf5ff;
    font-size: 14px;
}

.city-console-topbar > span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #8fabc9;
    font-size: 11px;
}

.city-console-topbar > span i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #25d690;
    box-shadow: 0 0 12px rgba(37, 214, 144, .7);
}

.city-console-dots {
    display: flex;
    gap: 6px;
}

.city-console-dots i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #27568d;
}

.city-console-dots i:first-child { background: #2a8dff; }
.city-console-dots i:nth-child(2) { background: #4c78a9; }

.city-console-body {
    display: grid;
    grid-template-columns: 126px minmax(0, 1fr);
    min-height: 490px;
}

.city-console-nav {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 18px 12px;
    border-right: 1px solid rgba(85, 162, 255, .13);
    background: rgba(2, 14, 34, .66);
}

.city-console-nav b {
    display: flex;
    align-items: center;
    height: 42px;
    margin-bottom: 8px;
    padding: 0 12px;
    color: #67baff;
    font-size: 16px;
    letter-spacing: .08em;
}

.city-console-nav span {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 34px;
    padding: 0 9px 0 25px;
    border-radius: 7px;
    color: #7792b2;
    font-size: 10px;
    font-weight: 700;
}

.city-console-nav span::before {
    content: "";
    position: absolute;
    left: 10px;
    width: 6px;
    height: 6px;
    border: 1px solid currentColor;
    border-radius: 2px;
}

.city-console-nav span.is-active {
    color: #d9edff;
    background: linear-gradient(90deg, rgba(17, 111, 240, .7), rgba(17, 111, 240, .12));
}

.city-console-content {
    min-width: 0;
    padding: 16px;
}

.city-console-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 9px;
}

.city-console-metrics article {
    min-width: 0;
    padding: 12px;
    border: 1px solid rgba(82, 164, 255, .14);
    border-radius: 9px;
    background: rgba(11, 42, 84, .54);
}

.city-console-metrics span,
.city-console-metrics strong,
.city-console-metrics em {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.city-console-metrics span { color: #7996b8; font-size: 9px; }
.city-console-metrics strong { margin-top: 6px; color: #f1f8ff; font-size: 13px; }
.city-console-metrics em { margin-top: 3px; color: #4fa8ff; font-size: 8px; font-style: normal; }

.city-console-main-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 10px;
    margin-top: 10px;
}

.city-console-panel {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(82, 164, 255, .14);
    border-radius: 10px;
    background: rgba(6, 31, 69, .62);
}

.city-console-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 36px;
    padding: 0 12px;
    border-bottom: 1px solid rgba(82, 164, 255, .1);
}

.city-console-panel-head strong { color: #cce7ff; font-size: 10px; }
.city-console-panel-head span { color: #4c9ff2; font-size: 8px; }

.city-map-panel {
    grid-row: span 2;
}

.city-map-stage {
    position: relative;
    min-height: 265px;
    background:
        radial-gradient(circle at 52% 48%, rgba(20, 119, 255, .22), transparent 42%),
        linear-gradient(rgba(77, 157, 255, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(77, 157, 255, .06) 1px, transparent 1px);
    background-size: auto, 36px 36px, 36px 36px;
}

.city-map-stage svg {
    display: block;
    width: 100%;
    height: 265px;
}

.city-map-shape {
    fill: url(#cityMapFill);
    stroke: rgba(72, 167, 255, .48);
    stroke-width: 2;
}

.city-map-lines path {
    fill: none;
    stroke: rgba(70, 174, 255, .66);
    stroke-width: 2;
}

.city-map-nodes circle {
    fill: #55c0ff;
    stroke: #d4f3ff;
    stroke-width: 2;
}

.city-map-labels text {
    fill: #b9dcff;
    font-size: 11px;
    font-weight: 700;
}

.city-site-panel ul {
    display: grid;
    gap: 6px;
    margin: 0;
    padding: 9px 11px 11px;
    list-style: none;
}

.city-site-panel li {
    display: grid;
    grid-template-columns: 7px 1fr auto;
    align-items: center;
    gap: 7px;
    min-width: 0;
    color: #9db7d3;
    font-size: 8px;
}

.city-site-panel li i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #2bd697;
    box-shadow: 0 0 6px rgba(43, 214, 151, .7);
}

.city-site-panel li span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.city-site-panel li em { color: #4ba7ff; font-size: 7px; font-style: normal; }

.city-theme-previews {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
    padding: 10px;
}

.city-theme-previews i {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 1.25;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 4px;
    background: linear-gradient(150deg, #0a73dc, #04294f);
}

.city-theme-previews i b,
.city-theme-previews i span {
    position: absolute;
    left: 8%;
    right: 8%;
    height: 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, .65);
}

.city-theme-previews i b { top: 28%; }
.city-theme-previews i span { top: 48%; right: 35%; opacity: .45; }
.city-theme-previews .theme-light { background: linear-gradient(150deg, #f4f8ff 0 60%, #75b8ff 61%); }
.city-theme-previews .theme-light b, .city-theme-previews .theme-light span { background: #1268c8; }
.city-theme-previews .theme-green { background: linear-gradient(150deg, #4bd6a4, #07584d); }
.city-theme-previews .theme-night { background: linear-gradient(150deg, #0e1b3f, #7836d4); }

.city-inquiry-panel {
    padding-bottom: 8px;
}

.city-inquiry-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 7px;
    margin: 6px 9px 0;
    padding: 5px 7px;
    border-radius: 5px;
    color: #9db7d3;
    background: rgba(255, 255, 255, .025);
    font-size: 7px;
}

.city-inquiry-row em { color: #ffbd5b; font-size: 7px; font-style: normal; }
.city-inquiry-row em.is-done { color: #3ed39a; }

.city-value {
    position: relative;
    padding: 64px 0 52px;
    background: #fff;
}

.city-value .city-heading {
    max-width: 1320px;
    margin-bottom: 48px;
}

.city-value .city-heading h2 {
    margin-top: 0;
}

.city-value::after,
.city-capabilities::after,
.city-process::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #dce9fb 20%, #dce9fb 80%, transparent);
}

.city-value-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    width: 100%;
    margin: 0;
}

.city-value-grid article {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    min-height: 326px;
    padding: 27px 26px 30px;
    border: 1px solid #e4ecf7;
    border-radius: 15px;
    background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
    text-align: center;
    box-shadow: 0 18px 46px rgba(17, 67, 135, .06);
}

.city-value-grid h3 {
    margin: 20px 0 10px;
    color: var(--city-ink);
    font-size: 18px;
    line-height: 1.36;
    font-weight: 700;
}

.city-value-grid p {
    max-width: 238px;
    margin: 0;
    color: var(--city-muted);
    font-size: 14px;
    line-height: 1.75;
}

.city-icon {
    position: relative;
    display: grid;
    place-items: center;
    flex: 0 0 118px;
    width: 118px;
    height: 118px;
    margin: 0 auto;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 45%, #f7fbff 0%, #eaf3ff 58%, #e3efff 100%);
    box-shadow: inset 0 0 28px rgba(80, 151, 255, .08);
}

.city-icon svg {
    width: 60px;
    height: 60px;
    overflow: visible;
    filter: drop-shadow(0 7px 10px rgba(27, 112, 232, .24));
}

.city-icon svg circle:not([fill]),
.city-icon svg path,
.city-icon svg rect:not([fill]) {
    fill: none;
    stroke: #fff;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.city-capabilities {
    position: relative;
    padding: 70px 0 72px;
    background: linear-gradient(180deg, #fbfdff 0%, #f7faff 54%, #fbfdff 100%);
}

.city-capability-heading {
    position: relative;
    margin-bottom: 38px;
    padding-bottom: 16px;
}

.city-capability-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 44px;
    height: 3px;
    border-radius: 99px;
    background: #1684ff;
    transform: translateX(-50%);
}

.city-capability-heading h2 {
    margin-top: 0;
}

.city-capability-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 32px;
}

.city-capability-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 438px;
    padding: 22px;
    border: 1px solid #d9e4f0;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(24, 72, 132, .065);
}

.city-capability-copy {
    position: relative;
    min-height: 112px;
    padding-left: 50px;
}

.city-capability-copy > b {
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #1479ed;
    background: #e5f2ff;
    box-shadow: inset 0 0 0 1px rgba(20, 121, 237, .1), 0 5px 14px rgba(25, 118, 226, .08);
    font-size: 13px;
    font-weight: 900;
}

.city-capability-copy h3 {
    margin: 0;
    color: var(--city-ink);
    font-size: 18px;
    line-height: 1.36;
    font-weight: 700;
}

.city-capability-copy p {
    margin: 7px 0 0;
    color: #5f7391;
    font-size: 14px;
    line-height: 1.7;
}

.city-mini-ui {
    flex: 1;
    min-height: 222px;
    padding: 14px;
    border: 1px solid #dce6f2;
    border-radius: 11px;
    background: linear-gradient(180deg, #fff, #f7faff);
    box-shadow: inset 0 1px 0 #fff, 0 8px 22px rgba(28, 76, 134, .035);
}

.city-region-ui label {
    display: block;
    margin-bottom: 6px;
    color: #7083a0;
    font-size: 11px;
    font-weight: 800;
}

.city-region-ui > div {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-bottom: 13px;
}

.city-region-ui > div span {
    position: relative;
    overflow: hidden;
    padding: 8px 20px 8px 9px;
    border: 1px solid #dfe8f5;
    border-radius: 6px;
    color: #4c6282;
    background: #fff;
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.city-region-ui > div span::after {
    content: "⌄";
    position: absolute;
    right: 8px;
    color: #9aabc1;
}

.city-region-ui p {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0 0 12px;
}

.city-region-ui p i {
    padding: 5px 8px;
    border-radius: 5px;
    color: #3373ba;
    background: #eaf4ff;
    font-size: 9px;
    font-style: normal;
}

.city-region-ui p .city-keyword-add {
    border: 1px dashed #c8d9ee;
    color: #7890ad;
    background: #fff;
}

.city-region-ui button {
    min-height: 32px;
    padding: 0 16px;
    border: 0;
    border-radius: 6px;
    color: #fff;
    background: #1179f4;
    font-size: 10px;
    font-weight: 800;
}

.city-capability-region-card {
    background: #fff;
    box-shadow: 0 16px 38px rgba(24, 72, 132, .065);
}

.city-capability-region-card .city-region-ui {
    padding: 15px;
    border-color: #dce6f2;
    border-radius: 12px;
    background: linear-gradient(180deg, #fff, #f9fbfe);
    box-shadow: 0 8px 22px rgba(28, 76, 134, .035);
}

.city-capability-region-card .city-region-ui label {
    margin-bottom: 8px;
    color: #536a89;
    font-size: 12px;
}

.city-capability-region-card .city-region-ui > div {
    gap: 10px;
    margin-bottom: 15px;
}

.city-capability-region-card .city-region-ui > div span {
    display: flex;
    align-items: center;
    min-height: 39px;
    padding-top: 0;
    padding-bottom: 0;
    border-color: #dfe8f3;
    border-radius: 6px;
    color: #536986;
    font-size: 11px;
    box-shadow: 0 2px 7px rgba(37, 78, 130, .035);
}

.city-capability-region-card .city-region-ui p {
    column-gap: 8px;
    row-gap: 0;
    margin-bottom: 16px;
}

.city-capability-region-card .city-region-ui p i {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    min-height: 29px;
    padding: 0 9px;
    color: #536d90;
    background: #f4f7fb;
    font-size: 10.5px;
    white-space: nowrap;
}

.city-capability-region-card .city-region-ui p i svg {
    flex: 0 0 9px;
    width: 9px;
    height: 9px;
    fill: none;
    stroke: #9aaabd;
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.city-capability-region-card .city-keyword-break {
    flex: 0 0 100%;
    width: 0;
    height: 0;
}

.city-capability-region-card .city-region-ui p .city-keyword-add {
    margin-top: 8px;
    border-color: #d3deeb;
    color: #758aa5;
    background: #fff;
}

.city-capability-region-card .city-region-ui button {
    min-width: 110px;
    min-height: 38px;
    padding: 0 18px;
    border-radius: 6px;
    background: linear-gradient(180deg, #1985fb, #0871ed);
    box-shadow: 0 4px 10px rgba(14, 116, 238, .18);
    font-size: 12px;
}

.city-region-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
}

.city-region-summary span {
    min-width: 0;
    padding: 7px 8px;
    border: 1px solid #e5edf7;
    border-radius: 8px;
    background: #f2f7fd;
}

.city-region-summary small,
.city-region-summary b {
    display: block;
}

.city-region-summary small {
    color: #74869d;
    font-size: 8px;
}

.city-region-summary b {
    margin-top: 3px;
    color: #17375f;
    font-size: 14px;
    line-height: 1;
}

.city-site-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    padding: 0 10px 0 2px;
    border-bottom: 1px solid #e5edf7;
}

.city-site-summary strong,
.city-site-summary small {
    display: block;
}

.city-site-summary strong {
    color: #264a77;
    font-size: 12px;
}

.city-site-summary small {
    margin-top: 4px;
    color: #7487a1;
    font-size: 9px;
}

.city-site-summary em {
    margin-left: auto;
    padding: 5px 8px;
    border-radius: 6px;
    color: #15936c;
    background: #dff8ee;
    font-size: 9px;
    font-style: normal;
    font-weight: 800;
}

.city-site-tools {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding-top: 13px;
}

.city-site-tools span {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 0;
    min-height: 60px;
    padding: 7px 3px;
    border: 1px solid #e8eff8;
    border-radius: 7px;
    color: #50709b;
    background: rgba(255, 255, 255, .8);
    text-align: center;
}

.city-site-tools i {
    display: grid;
    place-items: center;
    width: 27px;
    height: 27px;
    border-radius: 8px;
    color: #2686f5;
    background: #eaf4ff;
}

.city-site-tools svg,
.city-publish-flow svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.city-site-tools b {
    overflow: hidden;
    max-width: 100%;
    font-size: 8px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.city-capability-site-card {
    background: #fff;
    box-shadow: 0 16px 38px rgba(24, 72, 132, .065);
}

.city-capability-site-card .city-site-ui {
    padding: 15px;
    border-color: #dce6f2;
    border-radius: 12px;
    background: linear-gradient(180deg, #fff, #f9fbfe);
    box-shadow: 0 8px 22px rgba(28, 76, 134, .035);
}

.city-capability-site-card .city-site-summary {
    min-height: 74px;
    padding: 0 8px;
    border-bottom: 0;
}

.city-capability-site-card .city-site-summary strong {
    color: #173c69;
    font-size: 14px;
}

.city-capability-site-card .city-site-summary small {
    margin-top: 5px;
    color: #657a97;
    font-size: 10px;
}

.city-capability-site-card .city-site-summary em {
    padding: 6px 10px;
    border-radius: 7px;
    color: #299b77;
    background: #e6f8f1;
    font-size: 10px;
}

.city-capability-site-card .city-site-tools {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    padding-top: 0;
}

.city-capability-site-card .city-site-tools span {
    gap: 7px;
    min-height: 78px;
    padding: 10px 4px;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.city-capability-site-card .city-site-tools span:nth-child(-n + 3) {
    border-bottom: 1px solid #e8eef6;
}

.city-capability-site-card .city-site-tools span:not(:nth-child(3n)) {
    border-right: 1px solid #eef3f8;
}

.city-capability-site-card .city-site-tools i {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    color: #3d91f2;
    background: #eef6ff;
}

.city-capability-site-card .city-site-tools svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.9;
}

.city-capability-site-card .city-site-tools b {
    color: #526987;
    font-size: 10px;
}

.city-site-health {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 6px 10px;
    margin-top: 10px;
    padding: 9px 11px;
    border: 1px solid #e5edf7;
    border-radius: 8px;
    color: #5d7290;
    background: #f5f8fc;
    font-size: 9px;
}

.city-site-health b {
    color: #217eea;
    font-size: 10px;
}

.city-site-health i {
    grid-column: 1 / -1;
    height: 4px;
    overflow: hidden;
    border-radius: 99px;
    background: #dfe9f6;
}

.city-site-health i em {
    display: block;
    width: 92%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #1680f6, #5aa9ff);
}

.city-model-ui {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.city-model-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px 8px;
}

.city-model-grid span {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 0;
    color: #4f6685;
    text-align: center;
}

.city-model-grid i {
    display: grid;
    place-items: center;
    width: 43px;
    height: 43px;
    border-radius: 50%;
    color: #207cf0;
    background: radial-gradient(circle at 50% 38%, #fff, #e7f2ff 75%);
    box-shadow: inset 0 0 0 1px #e2edfb, 0 7px 16px rgba(25, 113, 222, .09);
    font-style: normal;
}

.city-model-grid svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.city-model-grid b {
    overflow: hidden;
    max-width: 100%;
    font-size: 8px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.city-model-ui > small {
    margin-top: 12px;
    color: #8a9bb1;
    font-size: 8px;
    text-align: center;
}

.city-capability-model-card {
    background: #fff;
    box-shadow: 0 16px 38px rgba(24, 72, 132, .065);
}

.city-capability-model-card .city-model-ui {
    justify-content: center;
    padding: 14px 18px 13px;
    border-color: #dce6f2;
    border-radius: 12px;
    background: linear-gradient(180deg, #fff, #f9fbfe);
    box-shadow: 0 8px 22px rgba(28, 76, 134, .035);
}

.city-capability-model-card .city-model-grid {
    gap: 13px 10px;
}

.city-capability-model-card .city-model-grid span {
    gap: 7px;
}

.city-capability-model-card .city-model-grid i {
    width: 48px;
    height: 48px;
    color: #2e78eb;
    background: radial-gradient(circle at 50% 38%, #fff 8%, #edf5ff 72%, #e4effd 100%);
    box-shadow: inset 0 0 0 1px #e1ebf8, 0 7px 16px rgba(25, 113, 222, .08);
}

.city-capability-model-card .city-model-grid svg {
    width: 31px;
    height: 31px;
    fill: none;
    stroke: none;
}

.city-capability-model-card .city-model-grid img {
    display: block;
    width: 33px;
    height: 33px;
    border-radius: 50%;
    object-fit: cover;
}

.city-capability-model-card .city-model-grid .is-deepseek img,
.city-capability-model-card .city-model-grid .is-qwen img {
    width: 31px;
    height: 31px;
}

.city-capability-model-card .city-model-grid .brand-fill {
    fill: currentColor;
    stroke: none;
}

.city-capability-model-card .city-model-grid .brand-white {
    fill: #fff;
    stroke: none;
}

.city-capability-model-card .city-model-grid .brand-alt {
    fill: #6550e7;
    stroke: none;
}

.city-capability-model-card .city-model-grid .brand-stroke {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
}

.city-capability-model-card .city-model-grid .is-hunyuan,
.city-capability-model-card .city-model-grid .is-qwen {
    color: #496ee9;
}

.city-capability-model-card .city-model-grid .is-qianfan {
    color: #247fe9;
}

.city-capability-model-card .city-model-grid .is-zhipu {
    color: #3867e9;
}

.city-capability-model-card .city-model-grid b {
    color: #425b7a;
    font-size: 10px;
}

.city-capability-model-card .city-model-ui > small {
    margin-top: 12px;
    color: #8e9db1;
    font-size: 9px;
    transform: none;
}

.city-model-status {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin-top: 10px;
}

.city-model-status span {
    overflow: hidden;
    padding: 7px 5px;
    border: 1px solid #e4ecf6;
    border-radius: 7px;
    color: #5a7090;
    background: #f3f7fc;
    font-size: 8px;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.city-command-ui {
    display: grid;
    align-content: center;
    gap: 7px;
}

.city-command-ui span {
    display: grid;
    grid-template-columns: 8px 1fr;
    align-items: center;
    gap: 8px;
    min-height: 31px;
    padding: 0 11px;
    border-radius: 5px;
    color: #4b6485;
    background: #edf4fd;
}

.city-command-ui span i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #1b85fa;
    box-shadow: 0 0 0 4px #e5f2ff;
}

.city-command-ui span b {
    font-size: 10px;
    font-weight: 700;
}

.city-capability-command-card {
    background: #fff;
    box-shadow: 0 16px 38px rgba(24, 72, 132, .065);
}

.city-capability-command-card .city-command-ui {
    align-content: center;
    gap: 9px;
    padding: 16px;
    border-color: #dce6f2;
    border-radius: 12px;
    background: linear-gradient(180deg, #fff, #f9fbfe);
    box-shadow: 0 8px 22px rgba(28, 76, 134, .035);
}

.city-capability-command-card .city-command-ui span {
    grid-template-columns: 10px minmax(0, 1fr);
    gap: 10px;
    min-height: 38px;
    padding: 0 13px;
    border-radius: 6px;
    color: #4c6380;
    background: linear-gradient(90deg, #edf4fd 0%, #f5f8fd 100%);
}

.city-capability-command-card .city-command-ui span i {
    width: 6px;
    height: 6px;
    background: #2388f5;
    box-shadow: 0 0 0 5px #e4f1ff;
}

.city-capability-command-card .city-command-ui span b {
    font-size: 11px;
    line-height: 1.35;
}

.city-publish-ui {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.city-publish-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 13px;
}

.city-publish-flow span {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    min-width: 47px;
    color: #2078dc;
    text-align: center;
}

.city-publish-flow span i {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #e8f3ff;
}

.city-publish-flow span b {
    color: #526b89;
    font-size: 8px;
    font-weight: 700;
}

.city-publish-flow > em {
    color: #91b5df;
    font-size: 13px;
    font-style: normal;
}

.city-task-queue {
    padding: 10px;
    border: 1px solid #e5edf7;
    border-radius: 8px;
    background: #fff;
}

.city-task-queue > strong {
    display: block;
    margin-bottom: 7px;
    color: #415b7d;
    font-size: 9px;
}

.city-task-queue p {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 7px;
    margin: 5px 0;
    color: #60738e;
    font-size: 8px;
}

.city-task-queue p span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.city-task-queue p em {
    color: #2f88ef;
    font-style: normal;
}

.city-task-queue p em.is-waiting {
    color: #8798ad;
}

.city-task-queue > div {
    height: 4px;
    margin: 6px 0 8px;
    overflow: hidden;
    border-radius: 99px;
    background: #e5eef9;
}

.city-task-queue > div i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #147cff, #5ca8ff);
}

.city-capability-publish-card {
    background: #fff;
    box-shadow: 0 16px 38px rgba(24, 72, 132, .065);
}

.city-capability-publish-card .city-publish-ui {
    justify-content: flex-start;
    padding: 0 2px;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.city-capability-publish-card .city-publish-flow {
    min-height: 67px;
    margin: 0 3px 12px;
}

.city-capability-publish-card .city-publish-flow span {
    gap: 6px;
    min-width: 52px;
}

.city-capability-publish-card .city-publish-flow span i {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 38%, #fff 5%, #edf5ff 72%, #e5effd 100%);
    box-shadow: inset 0 0 0 1px #e1ebf8, 0 7px 16px rgba(25, 113, 222, .08);
}

.city-capability-publish-card .city-publish-flow svg {
    width: 23px;
    height: 23px;
    stroke-width: 1.8;
}

.city-capability-publish-card .city-publish-flow span b {
    color: #4d6380;
    font-size: 10px;
}

.city-capability-publish-card .city-publish-flow > em {
    color: #6f8baa;
    font-size: 14px;
    font-weight: 700;
}

.city-capability-publish-card .city-task-queue {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 11px 14px;
    border-color: #dce6f2;
    border-radius: 12px;
    background: linear-gradient(180deg, #fff 0%, #f9fbfe 100%);
    box-shadow: 0 8px 22px rgba(28, 76, 134, .035);
}

.city-capability-publish-card .city-task-queue > strong {
    margin-bottom: 7px;
    color: #314968;
    font-size: 12px;
}

.city-capability-publish-card .city-task-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    height: auto;
    margin: 0 0 7px;
    overflow: visible;
    border-radius: 0;
    background: transparent;
}

.city-capability-publish-card .city-task-stats span {
    min-width: 0;
    padding: 8px 9px;
    border: 1px solid #e5edf7;
    border-radius: 8px;
    background: #f2f7fd;
}

.city-capability-publish-card .city-task-stats small,
.city-capability-publish-card .city-task-stats b {
    display: block;
}

.city-capability-publish-card .city-task-stats small {
    color: #71849d;
    font-size: 8px;
}

.city-capability-publish-card .city-task-stats b {
    margin-top: 3px;
    color: #17375f;
    font-size: 13px;
    line-height: 1;
}

.city-capability-publish-card .city-task-queue p {
    align-items: center;
    margin: 3px 0;
    color: #526984;
    font-size: 10px;
}

.city-capability-publish-card .city-task-queue p em {
    padding: 4px 7px;
    border-radius: 7px;
    color: #2f88ef;
    background: #edf5ff;
    font-size: 8px;
    font-weight: 700;
}

.city-capability-publish-card .city-task-queue p em.is-waiting {
    color: #8392a6;
    background: #f1f4f8;
}

.city-capability-publish-card .city-task-queue p em.is-done {
    color: #238d6c;
    background: #e7f7f0;
}

.city-capability-publish-card .city-task-progress {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    height: auto;
    margin: 3px 0 5px;
    overflow: visible;
    border-radius: 0;
    background: transparent;
}

.city-capability-publish-card .city-task-progress small,
.city-capability-publish-card .city-task-progress b {
    color: #60738e;
    font-size: 9px;
    font-weight: 700;
}

.city-capability-publish-card .city-task-progress > span {
    height: 4px;
    overflow: hidden;
    border-radius: 99px;
    background: #e5eef9;
}

.city-capability-publish-card .city-task-progress > span i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #147cff, #3e98ff);
}

.city-data-ui {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.city-data-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
}

.city-data-metrics span {
    min-width: 0;
    padding: 8px 9px;
    border-radius: 6px;
    background: #edf4fc;
}

.city-data-metrics small,
.city-data-metrics strong {
    display: block;
}

.city-data-metrics small {
    color: #7a8ba2;
    font-size: 8px;
}

.city-data-metrics strong {
    margin-top: 4px;
    color: #29486e;
    font-size: 13px;
}

.city-data-chart {
    margin-top: 9px;
}

.city-data-chart > small {
    color: #71839e;
    font-size: 8px;
}

.city-data-ui svg {
    display: block;
    width: 100%;
    height: 67px;
    margin-top: 3px;
}

.city-data-ui svg .city-data-line {
    fill: none;
    stroke: #2788f7;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.city-data-ui svg .city-data-area {
    fill: url(#cityDataFill);
    stroke: none;
}

.city-data-ui svg circle {
    fill: #fff;
    stroke: #2788f7;
    stroke-width: 2;
}

.city-capability-data-card {
    background: #fff;
    box-shadow: 0 16px 38px rgba(24, 72, 132, .065);
}

.city-capability-data-card .city-data-ui {
    justify-content: flex-start;
    padding: 14px 16px;
    border-color: #dce6f2;
    border-radius: 12px;
    background: linear-gradient(180deg, #fff, #f9fbfe);
    box-shadow: 0 8px 22px rgba(28, 76, 134, .035);
}

.city-capability-data-card .city-data-metrics {
    gap: 9px;
}

.city-capability-data-card .city-data-metrics span {
    min-height: 61px;
    padding: 9px 11px;
    border-radius: 7px;
    background: linear-gradient(135deg, #edf4fd 0%, #f5f8fd 100%);
}

.city-capability-data-card .city-data-metrics small {
    color: #73859d;
    font-size: 10px;
}

.city-capability-data-card .city-data-metrics strong {
    margin-top: 4px;
    color: #172f51;
    font-size: 16px;
    line-height: 1.1;
}

.city-capability-data-card .city-data-chart {
    margin-top: 10px;
}

.city-capability-data-card .city-data-chart > small {
    color: #687b95;
    font-size: 9px;
}

.city-capability-data-card .city-data-ui svg {
    height: 90px;
    margin-top: 4px;
}

.city-capability-data-card .city-data-ui svg .city-data-line {
    stroke: #368ef3;
    stroke-width: 2.5;
}

.city-capability-data-card .city-data-ui svg circle {
    fill: #368ef3;
    stroke: #fff;
    stroke-width: 1.3;
}

.city-process {
    position: relative;
    padding: 68px 0 72px;
    background: #fff;
}

.city-process::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e1edfb 20%, #e1edfb 80%, transparent);
}

.city-process .city-heading {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 15px;
}

.city-process .city-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 32px;
    height: 3px;
    border-radius: 99px;
    background: #2c8cff;
    transform: translateX(-50%);
}

.city-process .city-heading h2 {
    margin: 0;
}

.city-process-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.city-process-list li {
    position: relative;
    min-width: 0;
    padding: 0 18px;
    text-align: center;
}

.city-process-list li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 27px;
    left: calc(50% + 50px);
    width: calc(100% - 114px);
    height: 1px;
    background: #61aaff;
}

.city-process-list li:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 23.5px;
    left: calc(150% - 70px);
    z-index: 2;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid #61aaff;
}

.city-process-icon {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    margin: 0 auto;
    border-radius: 50%;
    color: #2479e8;
    background: #f4f7fb;
    box-shadow: inset 0 0 0 1px rgba(216, 227, 241, .34);
}

.city-process-icon svg {
    width: 29px;
    height: 29px;
    overflow: visible;
}

.city-process-icon .city-process-fill {
    fill: currentColor;
    stroke: none;
}

.city-process-icon .city-process-cutout {
    fill: #f4f7fb;
    stroke: none;
}

.city-process-icon .city-process-stroke {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.city-process-icon .city-process-stroke-strong {
    stroke-width: 2.8;
}

.city-process-list h3 {
    min-height: 0;
    margin: 12px 0 5px;
    color: var(--city-ink);
    font-size: 17px;
    line-height: 1.45;
    font-weight: 700;
}

.city-process-list p {
    max-width: 210px;
    margin: 0;
    margin-left: auto;
    margin-right: auto;
    color: var(--city-muted);
    font-size: 13.5px;
    line-height: 1.7;
}

.city-compare {
    position: relative;
    padding: 50px 0 48px;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(ellipse at 50% 18%, rgba(24, 98, 199, .18), transparent 42%),
        radial-gradient(circle at 78% 54%, rgba(10, 96, 225, .16), transparent 34%),
        linear-gradient(110deg, #020b1b 0%, #031a3a 52%, #05295b 100%);
}

.city-compare::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .18;
    background: repeating-linear-gradient(100deg, transparent 0 86px, rgba(68, 146, 255, .08) 87px 89px, transparent 90px 150px);
    transform: scale(1.15) rotate(-3deg);
}

.city-compare::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -180px;
    width: 900px;
    height: 300px;
    border-radius: 50%;
    background: rgba(17, 101, 230, .12);
    filter: blur(70px);
    transform: translateX(-50%);
}

.city-compare .layout {
    position: relative;
    z-index: 1;
}

.city-heading-dark h2 {
    color: #fff;
}

.city-compare .city-heading {
    max-width: 1280px;
    margin-bottom: 32px;
}

.city-compare .city-heading h2 {
    margin-top: 0;
}

.city-compare-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
    max-width: 1260px;
    margin: 0 auto;
}

.city-compare-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(132, 168, 212, .3);
    border-radius: 15px;
    background: linear-gradient(145deg, rgba(31, 42, 57, .76), rgba(15, 27, 44, .84));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04), 0 20px 44px rgba(0, 7, 20, .18);
}

.city-compare-card h3 {
    margin: 0;
    padding: 19px 20px 17px;
    border-bottom: 1px solid rgba(135, 169, 211, .17);
    color: #fff;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    text-align: center;
}

.city-compare-pro {
    border-color: rgba(41, 135, 255, .72);
    background: linear-gradient(145deg, rgba(8, 76, 171, .76), rgba(6, 37, 87, .88));
    box-shadow: inset 0 1px 0 rgba(113, 186, 255, .14), 0 22px 50px rgba(0, 58, 142, .24);
}

.city-compare-body {
    display: grid;
    grid-template-columns: minmax(205px, .88fr) minmax(235px, 1.12fr);
    align-items: center;
    gap: 27px;
    min-height: 298px;
    padding: 16px 28px 18px;
}

.city-compare-browser {
    position: relative;
    min-height: 260px;
    padding: 46px 18px 18px;
    overflow: hidden;
    border: 1px solid rgba(152, 174, 202, .16);
    border-radius: 10px;
    background: linear-gradient(145deg, #273548, #172438);
    box-shadow: 0 15px 24px rgba(0, 6, 20, .18);
}

.city-browser-bar {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    height: 33px;
    padding: 0 11px;
    background: #e4e9f0;
}

.city-browser-bar i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #8292a7;
}

.city-browser-nav {
    display: grid;
    grid-template-columns: 1fr .74fr;
    gap: 12px;
}

.city-browser-nav span,
.city-browser-hero strong,
.city-browser-hero span,
.city-browser-columns span {
    display: block;
    border-radius: 4px;
    background: #6c7c90;
}

.city-browser-nav span {
    height: 14px;
}

.city-browser-hero {
    display: grid;
    grid-template-columns: 1fr .82fr;
    gap: 8px 12px;
    margin-top: 15px;
    padding: 14px;
    border-radius: 5px;
    background: rgba(218, 227, 239, .82);
}

.city-browser-hero strong {
    grid-column: 1 / -1;
    height: 15px;
    background: #9aa8b9;
}

.city-browser-hero span {
    height: 11px;
    background: #a9b5c3;
}

.city-browser-columns {
    display: grid;
    grid-template-columns: 1fr .82fr .68fr;
    gap: 11px;
    margin-top: 16px;
}

.city-browser-columns span {
    height: 17px;
    background: #65758a;
}

.city-compare-pro .city-compare-browser {
    border-color: rgba(55, 159, 255, .68);
    background: linear-gradient(145deg, #0871e7, #0750b3 62%, #073988);
    box-shadow: 0 16px 30px rgba(0, 42, 113, .34);
}

.city-compare-pro .city-browser-bar {
    background: #f1f5fb;
}

.city-compare-pro .city-browser-bar i {
    background: #7da6dc;
}

.city-compare-pro .city-browser-nav span,
.city-compare-pro .city-browser-columns span {
    background: rgba(125, 194, 255, .72);
}

.city-compare-pro .city-browser-hero {
    background: rgba(239, 247, 255, .94);
}

.city-compare-pro .city-browser-hero strong,
.city-compare-pro .city-browser-hero span {
    background: #b4c9e5;
}

.city-compare-card ul {
    display: grid;
    align-content: center;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.city-compare-card li {
    position: relative;
    padding-left: 29px;
    color: rgba(222, 232, 244, .74);
    font-size: 13.5px;
    line-height: 1.6;
}

.city-compare-card li::before {
    content: "×";
    position: absolute;
    left: 0;
    top: 1px;
    display: grid;
    place-items: center;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    color: #b5c1ce;
    background: rgba(165, 183, 205, .18);
    font-size: 12px;
    font-weight: 900;
}

.city-compare-pro li {
    color: #e9f5ff;
}

.city-compare-pro li::before {
    content: "✓";
    color: #fff;
    background: #1688fa;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .24);
}

.city-compare-vs {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 70px;
    height: 70px;
    border: 3px solid #07336f;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(145deg, #238eff, #0756bd);
    box-shadow: 0 12px 28px rgba(0, 24, 74, .6), inset 0 1px 0 rgba(255, 255, 255, .28);
    font-size: 20px;
    font-weight: 900;
    transform: translate(-50%, -50%);
}

.city-section.city-industries {
    padding: 24px 0 28px;
    background: #fff;
}

.city-industries .layout {
    width: min(1320px, calc(100% - 76px));
    max-width: none;
}

.city-industries .city-heading {
    margin-bottom: 22px;
}

.city-industries .city-heading h2 {
    margin-top: 0;
}

.city-industry-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.city-industry-grid article {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    min-width: 0;
    min-height: 94px;
    padding: 14px 16px;
    border: 1px solid var(--city-line);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 9px 24px rgba(16, 60, 121, .045);
}

.city-industry-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    color: #167cf1;
    background: linear-gradient(145deg, #eef6ff, #dcecff);
    box-shadow: inset 0 0 0 1px rgba(55, 136, 236, .06);
}

.city-industry-icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.city-industry-grid h3 {
    margin: 0 0 6px;
    color: var(--city-ink);
    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;
}

.city-industry-grid p {
    margin: 0;
    color: var(--city-muted);
    font-size: 12px;
    line-height: 1.65;
}

.city-faq {
    padding: 72px 0 76px;
    background: var(--city-soft);
}

.city-faq .city-heading {
    margin-bottom: 40px;
}

.city-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 16px;
    max-width: 1280px;
    margin: 0 auto;
}

.city-faq details {
    padding: 23px 25px;
    border: 1px solid var(--city-line);
    border-radius: 14px;
    background: #fff;
}

.city-faq summary {
    color: var(--city-ink);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.city-faq details p {
    margin: 15px 0 0;
    color: var(--city-muted);
    font-size: 14px;
    line-height: 1.85;
}

.city-bottom-cta {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 297px;
    padding: 45px 20px;
    color: #fff;
    background:
        radial-gradient(ellipse at 50% 38%, rgba(20, 102, 218, .32), transparent 44%),
        linear-gradient(105deg, #061735 0%, #06285d 48%, #031630 100%);
}

.city-bottom-cta::before,
.city-bottom-cta::after {
    content: "";
    position: absolute;
    z-index: -1;
    pointer-events: none;
}

.city-bottom-cta::before {
    left: -3%;
    bottom: -28%;
    width: 42%;
    height: 88%;
    opacity: .62;
    background-image: radial-gradient(circle, rgba(43, 142, 255, .42) 1px, transparent 1.6px);
    background-size: 11px 11px;
    -webkit-mask-image: radial-gradient(ellipse at 20% 76%, #000 0 15%, transparent 70%);
    mask-image: radial-gradient(ellipse at 20% 76%, #000 0 15%, transparent 70%);
}

.city-bottom-cta::after {
    top: -58%;
    right: -8%;
    width: 58%;
    height: 216%;
    border-radius: 50%;
    opacity: .8;
    background: repeating-radial-gradient(ellipse at center, transparent 0 12px, rgba(41, 137, 255, .2) 13px 14px);
    transform: rotate(-8deg);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 0 48%, transparent 76%);
    mask-image: radial-gradient(ellipse at center, #000 0 48%, transparent 76%);
}

.city-bottom-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 207px;
    text-align: center;
}

.city-bottom-cta h2 {
    margin: 0;
    color: #fff;
    font-size: 34px;
    line-height: 1.42;
    font-weight: 800;
    letter-spacing: .4px;
    text-shadow: 0 3px 18px rgba(0, 22, 68, .42);
}

.city-bottom-cta .city-btn {
    width: auto;
    min-width: 220px;
    min-height: 48px;
    margin-top: 18px;
    border-radius: 7px;
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 12px 26px rgba(0, 104, 255, .34);
}

.city-bottom-cta p {
    margin: 10px 0 0;
    color: rgba(221, 237, 255, .72);
    font-size: 12px;
    letter-spacing: .4px;
}

@media (max-width: 1440px) {
    .city-hero-inner {
        padding-top: 78px;
    }

    .city-hero-copy {
        max-width: 860px;
    }

    .city-console-body {
        grid-template-columns: 112px minmax(0, 1fr);
    }

    .city-console-nav span {
        padding-left: 22px;
    }

    .city-capability-card {
        padding: 22px;
    }

    .city-compare-body {
        grid-template-columns: minmax(185px, .8fr) minmax(205px, 1.2fr);
        gap: 22px;
        padding-right: 22px;
        padding-left: 22px;
    }
}

@media (max-width: 1180px) {
    .city-section {
        padding: 80px 0;
    }

    .city-process {
        padding: 64px 0 68px;
    }

    .city-hero {
        height: 550px;
        min-height: 550px;
        padding: 0;
    }

    .city-hero::before {
        background-position: left center;
    }

    .city-hero-inner {
        padding-top: 76px;
    }

    .city-hero h1 {
        font-size: 46px;
    }

    .city-hero-lead {
        font-size: 20px;
    }

    .city-heading h2,
    .city-bottom-cta h2 {
        font-size: 30px;
    }

    .city-console-nav {
        display: none;
    }

    .city-console-body {
        grid-template-columns: 1fr;
        min-height: 470px;
    }

    .city-capability-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .city-capability-card {
        min-height: 405px;
        padding: 22px;
    }

    .city-capability-copy {
        min-height: 104px;
        padding-left: 46px;
    }

    .city-process-list li {
        padding: 0 14px;
    }

    .city-process-list li:not(:last-child)::before {
        right: auto;
    }

    .city-compare-body {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .city-compare-browser {
        min-height: 190px;
    }

    .city-industry-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 12px;
    }

    .city-industry-grid article {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 10px;
        padding: 15px 14px;
    }

    .city-industry-icon {
        width: 40px;
        height: 40px;
    }

    .city-industry-icon svg {
        width: 25px;
        height: 25px;
    }

    .city-industry-grid h3 {
        font-size: 14px;
    }

    .city-industry-grid p {
        font-size: 10.5px;
        line-height: 1.55;
    }
}

@media (max-width: 980px) {
    .city-hero {
        height: 550px;
        min-height: 550px;
        padding: 0;
    }

    .city-hero::before {
        background-position: left center;
    }

    .city-hero::after {
        background: rgba(0, 12, 34, .5);
    }

    .city-hero-inner {
        height: 100%;
        padding-top: 76px;
    }

    .city-hero-copy {
        width: 100%;
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
    }

    .city-hero h1 {
        font-size: 38px;
    }

    .city-hero-lead,
    .city-hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .city-hero-feature-grid,
    .city-actions {
        margin-left: auto;
        margin-right: auto;
    }

    .city-hero-tags,
    .city-actions {
        justify-content: center;
    }

    .city-console {
        width: min(900px, 100%);
        margin: 0 auto;
    }

    .city-value-grid,
    .city-capability-grid,
    .city-faq-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .city-value-grid article {
        min-height: 240px;
    }

    .city-capability-card {
        min-height: 405px;
    }

    .city-process-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 28px 0;
    }

    .city-process-list li:nth-child(3)::after,
    .city-process-list li:nth-child(3)::before {
        display: none;
    }

    .city-compare-grid {
        grid-template-columns: 1fr;
        max-width: 760px;
    }

    .city-compare-body {
        grid-template-columns: minmax(220px, .85fr) minmax(260px, 1.15fr);
    }

    .city-compare-vs {
        top: 50%;
    }
}

@media (max-width: 820px) {
    .city-hero::before {
        background-position: left center;
    }

    .city-hero h1 {
        font-size: 32px;
    }

    .city-heading h2 {
        font-size: 24px;
    }

    .city-industry-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .city-industry-grid article {
        grid-template-columns: 46px minmax(0, 1fr);
        padding: 18px;
    }

    .city-industry-icon {
        width: 44px;
        height: 44px;
    }

    .city-industry-grid h3 {
        font-size: 16px;
    }

    .city-industry-grid p {
        font-size: 12px;
    }
}

@media (max-width: 680px) {
    .city-section {
        padding: 62px 0;
    }

    .city-heading {
        margin-bottom: 34px;
    }

    .city-heading h2 {
        font-size: 24px;
    }

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

    .city-hero {
        height: auto;
        min-height: 680px;
        padding: 96px 0 52px;
    }

    .city-hero::before {
        background-position: 0% center;
    }

    .city-hero-inner {
        height: auto;
        min-height: 532px;
        padding-top: 0;
    }

    .city-hero h1 {
        font-size: 30px;
    }

    .city-hero-lead {
        margin-top: 14px;
        font-size: 18px;
        line-height: 1.55;
    }

    .city-hero-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
        margin-top: 20px;
    }

    .city-hero-feature-grid > span {
        gap: 8px;
        min-height: 54px;
        padding: 0 10px;
    }

    .city-hero-feature-grid svg {
        flex-basis: 23px;
        width: 23px;
        height: 23px;
    }

    .city-hero-feature-grid b {
        font-size: 13px;
    }

    .city-hero-desc {
        margin-top: 16px;
        font-size: 14px;
        line-height: 1.8;
    }

    .city-hero-tags {
        gap: 7px;
        margin-top: 22px;
    }

    .city-hero-tags span {
        padding: 7px 10px;
        font-size: 11px;
    }

    .city-actions {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 20px;
    }

    .city-btn {
        width: 100%;
    }

    .city-console-topbar {
        grid-template-columns: 55px 1fr;
        min-height: 46px;
        padding: 0 12px;
    }

    .city-console-topbar > span {
        display: none;
    }

    .city-console-content {
        padding: 10px;
    }

    .city-console-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
    }

    .city-console-main-grid {
        grid-template-columns: 1fr;
    }

    .city-map-panel {
        grid-row: auto;
    }

    .city-map-stage,
    .city-map-stage svg {
        min-height: 215px;
        height: 215px;
    }

    .city-theme-previews {
        grid-template-columns: repeat(4, minmax(46px, 1fr));
    }

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

    .city-capability-grid,
    .city-industry-grid,
    .city-faq-grid {
        grid-template-columns: 1fr;
    }

    .city-value-grid article {
        min-height: 0;
        padding: 20px 16px;
    }

    .city-value-grid .city-icon {
        flex: 0 0 80px;
        width: 80px;
        height: 80px;
    }

    .city-value-grid .city-icon svg {
        width: 42px;
        height: 42px;
    }

    .city-value-grid h3 {
        margin: 14px 0 8px;
        font-size: 15px;
    }

    .city-value-grid p {
        font-size: 12px;
        line-height: 1.6;
    }

    .city-capability-card {
        min-height: 0;
        padding: 20px;
    }

    .city-capability-copy {
        min-height: 0;
        margin-bottom: 18px;
    }

    .city-value-grid h3,
    .city-capability-copy h3,
    .city-compare-card h3 {
        font-size: 17px;
    }

    .city-mini-ui {
        min-height: 220px;
        padding: 14px;
    }

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

    .city-publish-flow span {
        min-width: 43px;
    }

    .city-publish-flow span i {
        width: 34px;
        height: 34px;
    }

    .city-process-list {
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 420px;
        margin: 0 auto;
    }

    .city-process-list li {
        display: grid;
        grid-template-columns: 62px 1fr;
        grid-template-rows: auto auto;
        column-gap: 18px;
        padding: 0 0 34px;
        text-align: left;
    }

    .city-process-list li:not(:last-child)::after {
        display: block;
        top: 62px;
        bottom: 0;
        left: 31px;
        width: 1px;
        height: auto;
    }

    .city-process-list li:not(:last-child)::before {
        display: none;
    }

    .city-process-icon {
        grid-row: 1 / span 2;
        width: 62px;
        height: 62px;
    }

    .city-process-list h3 {
        min-height: 0;
        margin: 4px 0 6px;
        font-size: 17px;
    }

    .city-process-list p {
        font-size: 13px;
    }

    .city-compare-body {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 18px 18px 22px;
    }

    .city-compare-vs {
        width: 48px;
        height: 48px;
        font-size: 14px;
    }

    .city-compare-browser {
        min-height: 210px;
    }

    .city-industry-grid article {
        min-height: 0;
        padding: 18px;
    }

    .city-bottom-cta {
        min-height: 260px;
        padding: 42px 16px;
    }

    .city-bottom-inner {
        min-height: 176px;
    }

    .city-bottom-cta h2 {
        font-size: 24px;
        line-height: 1.5;
    }

    .city-bottom-cta .city-btn {
        width: min(220px, 100%);
        min-height: 46px;
        margin-top: 20px;
    }

    .city-bottom-cta p {
        margin-top: 11px;
        font-size: 11px;
        line-height: 1.6;
    }
}

@media (prefers-reduced-motion: reduce) {
    .city-btn {
        transition: none;
    }
}
