:root {
    --project-bg: #fffaf6;
    --project-surface: #ffffff;
    --project-surface-soft: rgba(255, 255, 255, 0.78);
    --project-primary: #1d4fff;
    --project-primary-deep: #142f8f;
    --project-secondary: #ff7a32;
    --project-secondary-soft: #ffe6d8;
    --project-text: #162037;
    --project-text-soft: #5a6580;
    --project-border: rgba(22, 32, 55, 0.12);
    --project-shadow: 0 22px 54px rgba(32, 45, 89, 0.14);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    min-height: 100%;
}

body {
    font-family: "Alibaba PuHuiTi 3.0", "MiSans", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.65;
    color: var(--project-text);
    background: radial-gradient(circle at 8% 4%, #ffe5d4 0%, transparent 34%),
    radial-gradient(circle at 92% 3%, #dce4ff 0%, transparent 34%),
    var(--project-bg);
}

body.project-modal-open {
    overflow: hidden;
}

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

button,
input {
    font: inherit;
}

button {
    border: 0;
    background: none;
}

.project-page {
    width: 100%;
    overflow: clip;
}

.project-shell {
    width: min(1180px, calc(100% - 56px));
    margin: 0 auto;
}

[data-reveal="true"] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.62s ease, transform 0.62s ease;
}

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

.project-btn {
    min-width: 150px;
    height: 46px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.project-btn:hover {
    transform: translateY(-1px);
}

.project-btn--solid {
    color: #fff;
    background: linear-gradient(124deg, #ff7a32 0%, #ff9353 38%, #1c4fff 100%);
    box-shadow: 0 14px 30px rgba(45, 81, 200, 0.24);
}

.project-btn--ghost {
    color: var(--project-primary-deep);
    border: 1px solid rgba(28, 79, 255, 0.3);
    background: rgba(255, 255, 255, 0.72);
}

.project-header {
    position: sticky;
    top: 0;
    z-index: 24;
    border-bottom: 1px solid transparent;
    background: rgba(255, 250, 246, 0.82);
    backdrop-filter: blur(12px);
}

.project-header.is-scrolled {
    border-bottom-color: var(--project-border);
}

.project-header__inner {
    height: 74px;
    display: flex;
    align-items: center;
    gap: 26px;
}

.project-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.project-logo__mark {
    width: 28px;
    height: 28px;
    border-radius: 9px;
    position: relative;
    background: linear-gradient(145deg, #ff7b39 0%, #1c4fff 100%);
}

.project-logo__mark::after {
    content: "";
    position: absolute;
    inset: 7px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.92);
}

.project-nav {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

.project-nav a {
    color: var(--project-text-soft);
    font-size: 14px;
    transition: color 0.2s ease;
}

.project-nav a:hover,
.project-nav a.active {
    color: var(--project-primary-deep);
    font-weight: 600;
}

.project-header__actions {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.project-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--project-text-soft);
    font-size: 13px;
}

.project-phone img {
    width: 16px;
    height: 16px;
}

.project-user-menu {
    position: relative;
}

.project-user-menu[hidden] {
    display: none !important;
}

.project-user-menu__trigger {
    min-width: 164px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(28, 79, 255, 0.22);
    background: rgba(255, 255, 255, 0.85);
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--project-text);
    cursor: pointer;
}

.project-user-menu__avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #e8ecff;
    color: var(--project-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    overflow: hidden;
    flex-shrink: 0;
}

.project-user-menu__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-user-menu__name {
    max-width: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 13px;
}

.project-user-menu__arrow {
    color: var(--project-text-soft);
    font-size: 12px;
    line-height: 1;
}

.project-user-menu__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 188px;
    border-radius: 14px;
    border: 1px solid var(--project-border);
    background: #ffffff;
    box-shadow: var(--project-shadow);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 30;
}

.project-user-menu.is-open .project-user-menu__dropdown,
.project-user-menu:hover .project-user-menu__dropdown,
.project-user-menu:focus-within .project-user-menu__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.project-user-menu__item {
    width: 100%;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 12px;
    font-size: 14px;
    color: var(--project-text);
    cursor: pointer;
}

.project-user-menu__item:hover {
    background: #f4f6ff;
}

.project-user-menu__item--danger {
    color: #e34d59;
}

.project-nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(28, 79, 255, 0.08);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.project-nav-toggle span {
    width: 17px;
    height: 2px;
    border-radius: 2px;
    background: var(--project-primary-deep);
}

.project-hero {
    padding: 80px 0 44px;
}

.project-hero__inner {
    display: grid;
    grid-template-columns: 1fr minmax(300px, 400px);
    align-items: stretch;
    gap: 30px;
}

.project-hero__content {
    position: relative;
    border: 1px solid rgba(255, 122, 50, 0.2);
    border-radius: 28px;
    padding: 42px 40px;
    background: linear-gradient(140deg, rgba(255, 245, 237, 0.96) 0%, rgba(235, 241, 255, 0.9) 56%, rgba(223, 230, 255, 0.9) 100%);
    box-shadow: var(--project-shadow);
    overflow: hidden;
}

.project-hero__content::after {
    content: "";
    position: absolute;
    right: -38px;
    top: -42px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 122, 50, 0.24) 0%, transparent 65%);
}

.project-hero__tag,
.project-subhero span,
.project-section__head span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    color: #a74a16;
    background: var(--project-secondary-soft);
    border: 1px solid rgba(255, 122, 50, 0.24);
}

.project-hero__tag {
    margin-bottom: 16px;
}

.project-hero h1,
.project-subhero h1 {
    font-size: clamp(30px, 3.6vw, 44px);
    line-height: 1.2;
    letter-spacing: 0.01em;
    margin-bottom: 16px;
}

.project-hero p,
.project-subhero p {
    color: var(--project-text-soft);
    font-size: 16px;
}

.project-hero__actions {
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.project-hero__stats {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    list-style: none;
}

.project-hero__stats li {
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(28, 79, 255, 0.16);
    background: rgba(255, 255, 255, 0.74);
}

.project-hero__stats strong {
    display: block;
    font-size: 24px;
    line-height: 1.1;
    color: var(--project-primary-deep);
}

.project-hero__stats span {
    color: var(--project-text-soft);
    font-size: 13px;
}

.project-hero__panel {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pipeline-card {
    border-radius: 22px;
    border: 1px solid rgba(28, 79, 255, 0.18);
    background: #ffffff;
    box-shadow: var(--project-shadow);
    padding: 24px;
}

.pipeline-card h3 {
    font-size: 18px;
    margin-bottom: 16px;
}

.pipeline-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pipeline-card li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed rgba(22, 32, 55, 0.15);
    padding-bottom: 10px;
}

.pipeline-card li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pipeline-card li span {
    color: var(--project-text-soft);
    font-size: 14px;
}

.pipeline-card li strong {
    color: var(--project-primary-deep);
    font-size: 17px;
}

.pipeline-card--accent {
    background: linear-gradient(146deg, #1f327f 0%, #1c4fff 52%, #4f6eff 100%);
    border-color: transparent;
    color: #eaf0ff;
}

.pipeline-card--accent h3 {
    color: #fff;
    margin-bottom: 12px;
}

.pipeline-card--accent p {
    color: rgba(234, 240, 255, 0.9);
    font-size: 15px;
}

.project-subhero {
    padding: 76px 0 26px;
}

.project-subhero .project-shell {
    border-radius: 22px;
    border: 1px solid rgba(28, 79, 255, 0.16);
    background: linear-gradient(130deg, rgba(255, 248, 240, 0.96) 0%, rgba(231, 238, 255, 0.92) 100%);
    padding: 34px;
    box-shadow: 0 14px 34px rgba(30, 44, 89, 0.1);
}

.project-subhero span {
    margin-bottom: 12px;
}

.project-section {
    padding: 78px 0;
}

.project-highlight {
    position: relative;
}

.project-highlight::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(28, 79, 255, 0.06) 0%, rgba(255, 255, 255, 0) 66%);
    pointer-events: none;
}

.project-section__head {
    max-width: 780px;
    margin-bottom: 30px;
    position: relative;
}

.project-section__head span {
    margin-bottom: 10px;
}

.project-section__head h2 {
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.24;
}

.project-grid {
    display: grid;
    gap: 18px;
    position: relative;
}

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

.project-grid--industry {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

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

.project-grid--solution-list,
.project-grid--case-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

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

.project-card {
    border-radius: 18px;
    border: 1px solid var(--project-border);
    background: var(--project-surface-soft);
    padding: 24px;
    box-shadow: 0 12px 28px rgba(36, 52, 99, 0.09);
}

.project-card h3 {
    font-size: 20px;
    line-height: 1.34;
    margin-bottom: 10px;
}

.project-card p {
    color: var(--project-text-soft);
    font-size: 15px;
}

.project-card strong {
    color: var(--project-text);
}

.project-card blockquote {
    margin-top: 14px;
    padding: 10px 12px;
    border-left: 3px solid rgba(28, 79, 255, 0.4);
    background: rgba(28, 79, 255, 0.06);
    border-radius: 8px;
    color: #3a4a77;
    font-size: 14px;
}

.project-card--feature {
    min-height: 236px;
    position: relative;
    overflow: hidden;
}

.project-card--feature::before {
    content: "";
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(28, 79, 255, 0.12) 0%, transparent 70%);
}

.project-card--solution,
.project-card--case,
.project-card--pricing,
.project-card--resource {
    min-height: 280px;
}

.project-emphasis {
    color: var(--project-primary-deep) !important;
    font-weight: 600;
    margin-bottom: 10px;
}

.project-meta {
    color: #7a86a5;
    font-size: 13px;
    margin-bottom: 10px;
}

.project-tags {
    margin-top: 14px;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-tags li {
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid rgba(28, 79, 255, 0.2);
    background: rgba(28, 79, 255, 0.08);
    color: #2c448c;
    font-size: 12px;
}

.project-link,
.project-link-btn {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    color: var(--project-primary-deep);
    font-size: 14px;
    font-weight: 600;
}

.project-link-btn {
    cursor: pointer;
}

.project-center-action {
    margin-top: 26px;
    text-align: center;
}

.project-price {
    margin: 14px 0 8px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.project-price strong {
    font-size: 34px;
    line-height: 1;
    color: var(--project-primary-deep);
}

.project-price span {
    color: var(--project-text-soft);
    font-size: 14px;
}

.project-feature-list {
    margin: 16px 0 22px;
    list-style: none;
    display: grid;
    gap: 9px;
}

.project-feature-list li {
    position: relative;
    padding-left: 18px;
    color: #3d4b71;
    font-size: 14px;
}

.project-feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(140deg, #ff7a32 0%, #1c4fff 100%);
}

.project-chip {
    display: inline-flex;
    height: 24px;
    align-items: center;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid rgba(28, 79, 255, 0.18);
    background: rgba(28, 79, 255, 0.08);
    color: #2c448c;
    font-size: 12px;
    margin-bottom: 10px;
}

.project-journey__list {
    position: relative;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.project-journey__list li {
    border-radius: 16px;
    border: 1px solid rgba(28, 79, 255, 0.18);
    background: #fff;
    padding: 20px 18px;
    box-shadow: 0 10px 24px rgba(35, 48, 91, 0.09);
}

.project-journey__list strong {
    font-size: 14px;
    color: var(--project-primary);
}

.project-journey__list h3 {
    font-size: 20px;
    margin: 8px 0;
}

.project-journey__list p {
    color: var(--project-text-soft);
    font-size: 14px;
}

.project-ai-banner {
    padding-top: 12px;
}

.project-ai__inner {
    border-radius: 28px;
    padding: 36px 38px;
    border: 1px solid rgba(21, 47, 143, 0.2);
    background: linear-gradient(132deg, #1d2d6d 0%, #1c4fff 58%, #2640a1 100%);
    color: #ecf2ff;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 28px;
    box-shadow: var(--project-shadow);
}

.project-ai__inner span {
    display: inline-flex;
    align-items: center;
    height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    font-size: 13px;
    margin-bottom: 10px;
    color: #fff;
}

.project-ai__inner h2 {
    font-size: clamp(28px, 3vw, 36px);
    line-height: 1.25;
    margin-bottom: 12px;
}

.project-ai__inner p {
    color: rgba(236, 242, 255, 0.88);
}

.project-ai__inner ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.project-ai__inner li {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 14px;
}

.project-faq-list {
    display: grid;
    gap: 14px;
}

.project-faq-item {
    border-radius: 14px;
    border: 1px solid var(--project-border);
    background: #fff;
    padding: 18px 20px;
}

.project-faq-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.project-faq-item p {
    color: var(--project-text-soft);
    font-size: 14px;
}

.project-timeline {
    list-style: none;
    position: relative;
    margin-left: 8px;
    padding-left: 20px;
    display: grid;
    gap: 14px;
}

.project-timeline::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 2px;
    bottom: 2px;
    width: 2px;
    background: linear-gradient(180deg, #1c4fff 0%, #ff7a32 100%);
}

.project-timeline li {
    position: relative;
    border-radius: 14px;
    border: 1px solid var(--project-border);
    background: #fff;
    padding: 14px 16px;
}

.project-timeline li::before {
    content: "";
    position: absolute;
    left: -22px;
    top: 17px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #1d4fff;
    box-shadow: 0 0 0 4px rgba(29, 79, 255, 0.14);
}

.project-timeline strong {
    display: inline-block;
    color: var(--project-primary-deep);
    font-size: 14px;
    margin-bottom: 4px;
}

.project-timeline p {
    color: var(--project-text-soft);
    font-size: 14px;
}

.project-contact {
    padding-top: 48px;
    padding-bottom: 94px;
}

.project-contact__inner {
    text-align: center;
    border-radius: 26px;
    border: 1px solid rgba(255, 122, 50, 0.28);
    background: linear-gradient(130deg, rgba(255, 247, 238, 0.96) 0%, rgba(227, 235, 255, 0.9) 100%);
    box-shadow: var(--project-shadow);
    padding: 54px 24px;
}

.project-contact__inner h2 {
    font-size: clamp(30px, 3vw, 40px);
    line-height: 1.2;
}

.project-contact__inner p {
    margin: 14px auto 26px;
    color: var(--project-text-soft);
    max-width: 760px;
}

.project-footer {
    border-top: 1px solid rgba(28, 79, 255, 0.14);
    padding: 34px 0 42px;
    background: rgba(255, 255, 255, 0.84);
}

.project-footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 36px;
}

.project-footer__inner p {
    margin-top: 10px;
    color: var(--project-text-soft);
    max-width: 520px;
}

.project-footer__meta {
    text-align: right;
}

.project-footer__meta p {
    margin-top: 0;
}

.project-float {
    position: fixed;
    right: 18px;
    bottom: 24px;
    z-index: 26;
    width: 52px;
    height: 132px;
    border-radius: 26px;
    color: #fff;
    background: linear-gradient(180deg, #ff7a32 0%, #ff9052 44%, #1c4fff 100%);
    box-shadow: 0 16px 34px rgba(35, 60, 150, 0.33);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    cursor: pointer;
}

.project-modal-shell {
    position: fixed;
    inset: 0;
    z-index: 48;
    display: none;
}

.project-modal-shell.is-visible {
    display: block;
}

.project-modal-shell__overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 12, 33, 0.6);
}

.project-modal {
    position: relative;
    width: min(520px, calc(100% - 32px));
    margin: 8vh auto 0;
    border-radius: 18px;
    border: 1px solid rgba(28, 79, 255, 0.2);
    background: #fff;
    box-shadow: 0 22px 58px rgba(18, 27, 63, 0.3);
    padding: 28px;
}

.project-modal__close {
    position: absolute;
    right: 14px;
    top: 12px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #8390ad;
    background: #f3f5ff;
    cursor: pointer;
}

.project-modal h2 {
    font-size: 28px;
}

.project-modal__subtitle {
    margin-top: 8px;
    color: var(--project-text-soft);
    font-size: 14px;
}

.project-form {
    margin-top: 18px;
    display: grid;
    gap: 12px;
}

.project-form__field {
    display: grid;
    gap: 7px;
    color: var(--project-text);
    font-size: 14px;
}

.project-form__field input {
    height: 42px;
    border-radius: 10px;
    border: 1px solid rgba(28, 79, 255, 0.22);
    padding: 0 12px;
    outline: none;
}

.project-form__field input:focus {
    border-color: rgba(28, 79, 255, 0.58);
    box-shadow: 0 0 0 3px rgba(28, 79, 255, 0.15);
}

.project-form__error {
    min-height: 18px;
    color: #dd3a49;
    font-size: 12px;
}

.project-form__feedback {
    min-height: 20px;
    font-size: 13px;
    color: var(--project-text-soft);
}

.project-form__feedback.success {
    color: #18884b;
}

.project-form__feedback.error {
    color: #dd3a49;
}

.project-form__submit {
    width: 100%;
}

@media (max-width: 1180px) {
    .project-grid--industry,
    .project-grid--detail,
    .project-grid--pricing,
    .project-grid--resource {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .project-grid--capability,
    .project-grid--cases {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 980px) {
    .project-nav-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .project-nav {
        position: absolute;
        left: 20px;
        right: 20px;
        top: calc(100% + 10px);
        border-radius: 14px;
        border: 1px solid rgba(28, 79, 255, 0.2);
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--project-shadow);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.25s ease;
        margin-left: 0;
    }

    .project-nav a {
        width: 100%;
        padding: 12px 16px;
        font-size: 15px;
    }

    .project-nav.is-open {
        max-height: 360px;
        padding: 8px 0;
    }

    .project-header__actions {
        display: none;
    }

    .project-hero,
    .project-subhero {
        padding-top: 44px;
    }

    .project-hero__inner,
    .project-ai__inner {
        grid-template-columns: 1fr;
    }

    .project-grid--solution-list,
    .project-grid--case-list {
        grid-template-columns: 1fr;
    }

    .project-footer__inner {
        flex-direction: column;
    }

    .project-footer__meta {
        text-align: left;
    }
}

@media (max-width: 760px) {
    .project-shell {
        width: min(1180px, calc(100% - 28px));
    }

    .project-section {
        padding: 62px 0;
    }

    .project-hero__content,
    .project-subhero .project-shell {
        padding: 30px 22px;
    }

    .project-grid--industry,
    .project-grid--detail,
    .project-grid--pricing,
    .project-grid--resource,
    .project-grid--capability,
    .project-grid--cases,
    .project-journey__list,
    .project-hero__stats {
        grid-template-columns: 1fr;
    }

    .project-hero__actions {
        flex-wrap: wrap;
    }

    .project-float {
        right: 12px;
        bottom: 16px;
        width: 46px;
        height: 114px;
        font-size: 13px;
    }
}

/* ProjectOS 使用独立主题覆盖，保留现有响应式骨架，同时统一为偏 Codex 风格的控制台视觉。 */
:root {
    --project-bg: #09111f;
    --project-surface: rgba(11, 19, 33, 0.94);
    --project-surface-soft: rgba(10, 19, 34, 0.82);
    --project-primary: #74dfff;
    --project-primary-deep: #d9f8ff;
    --project-secondary: #73f5c7;
    --project-secondary-soft: rgba(115, 245, 199, 0.14);
    --project-text: #edf6ff;
    --project-text-soft: #9fb4cb;
    --project-border: rgba(120, 169, 255, 0.18);
    --project-shadow: 0 26px 60px rgba(2, 8, 22, 0.4);
}

body {
    color-scheme: dark;
    color: var(--project-text);
    background:
            radial-gradient(circle at 12% 8%, rgba(73, 123, 255, 0.24) 0%, transparent 32%),
            radial-gradient(circle at 88% 6%, rgba(115, 245, 199, 0.16) 0%, transparent 28%),
            radial-gradient(circle at 50% 40%, rgba(25, 43, 76, 0.56) 0%, transparent 44%),
            linear-gradient(180deg, #07101d 0%, #09111f 38%, #0c1626 100%);
}

.project-page {
    position: relative;
}

.project-page::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
            linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, transparent 78%);
    pointer-events: none;
    opacity: 0.26;
}

.project-btn {
    border: 1px solid transparent;
}

.project-btn--solid {
    color: #06101b;
    background: linear-gradient(135deg, #7ef7d0 0%, #75defe 52%, #b7f2ff 100%);
    box-shadow: 0 18px 38px rgba(40, 151, 255, 0.22);
}

.project-btn--ghost {
    color: var(--project-text);
    border-color: rgba(143, 183, 255, 0.22);
    background: rgba(13, 22, 38, 0.56);
    backdrop-filter: blur(12px);
}

.project-header {
    border-bottom-color: rgba(118, 174, 255, 0.08);
    background: rgba(7, 16, 29, 0.72);
    backdrop-filter: blur(18px);
}

.project-header.is-scrolled {
    border-bottom-color: rgba(118, 174, 255, 0.16);
}

.project-logo__mark {
    background: linear-gradient(145deg, #6cf5c9 0%, #70dfff 44%, #5c7cff 100%);
    box-shadow: 0 0 0 1px rgba(186, 244, 255, 0.18);
}

.project-logo__mark::after {
    background: rgba(6, 16, 28, 0.88);
}

.project-nav a,
.project-phone,
.project-user-menu__arrow {
    color: var(--project-text-soft);
}

.project-nav a:hover,
.project-nav a.active,
.project-logo,
.project-user-menu__trigger {
    color: var(--project-text);
}

.project-user-menu__trigger,
.project-user-menu__dropdown {
    border-color: rgba(120, 169, 255, 0.18);
    background: rgba(9, 17, 31, 0.92);
}

.project-user-menu__avatar {
    background: rgba(122, 223, 255, 0.14);
    color: #8be5ff;
}

.project-nav-toggle span {
    background: rgba(233, 244, 255, 0.88);
}

.project-hero {
    padding: 90px 0 56px;
}

.project-hero__content,
.project-subhero .project-shell,
.pipeline-card,
.project-card,
.project-journey__list li,
.project-faq-item,
.project-timeline li,
.project-contact__inner,
.project-modal {
    border-color: rgba(120, 169, 255, 0.16);
    background: linear-gradient(180deg, rgba(13, 22, 38, 0.94) 0%, rgba(8, 16, 28, 0.92) 100%);
    box-shadow: var(--project-shadow);
    backdrop-filter: blur(14px);
}

.project-hero__content {
    background:
            radial-gradient(circle at 85% 18%, rgba(116, 223, 255, 0.16) 0%, transparent 26%),
            radial-gradient(circle at 18% 90%, rgba(115, 245, 199, 0.12) 0%, transparent 24%),
            linear-gradient(140deg, rgba(13, 22, 38, 0.98) 0%, rgba(8, 17, 31, 0.96) 100%);
}

.project-hero__content::after {
    background: radial-gradient(circle, rgba(116, 223, 255, 0.24) 0%, transparent 68%);
}

.project-hero__tag,
.project-subhero span,
.project-section__head span {
    color: #b4fff1;
    border-color: rgba(115, 245, 199, 0.22);
    background: rgba(115, 245, 199, 0.1);
}

.project-hero h1,
.project-subhero h1,
.project-section__head h2,
.project-contact__inner h2,
.project-ai__inner h2 {
    color: var(--project-text);
}

.project-hero p,
.project-subhero p,
.project-card p,
.project-card blockquote,
.project-journey__list p,
.project-faq-item p,
.project-timeline p,
.project-contact__inner p,
.project-footer__inner p,
.project-footer__meta p {
    color: var(--project-text-soft);
}

.project-hero__stats li {
    border-color: rgba(115, 245, 199, 0.14);
    background: rgba(6, 15, 28, 0.74);
}

.project-hero__stats strong,
.pipeline-card li strong,
.project-emphasis,
.project-price strong,
.project-timeline strong,
.project-link,
.project-link-btn {
    color: #8ce8ff !important;
}

.project-hero__stats span,
.project-meta,
.pipeline-card li span,
.project-price span {
    color: var(--project-text-soft);
}

.pipeline-card {
    border-radius: 24px;
}

.pipeline-card h3 {
    color: var(--project-text);
}

.pipeline-card ul {
    gap: 14px;
}

.pipeline-card li {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.pipeline-card--accent {
    background:
            radial-gradient(circle at 18% 18%, rgba(124, 247, 208, 0.18) 0%, transparent 26%),
            linear-gradient(145deg, rgba(8, 18, 32, 0.98) 0%, rgba(18, 44, 72, 0.95) 54%, rgba(11, 99, 127, 0.95) 100%);
    color: #dcfbff;
}

.project-subhero .project-shell {
    position: relative;
    overflow: hidden;
}

.project-subhero .project-shell::after {
    content: "";
    position: absolute;
    inset: auto -40px -56px auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(94, 124, 255, 0.22) 0%, transparent 66%);
}

.project-highlight::before {
    background: linear-gradient(180deg, rgba(116, 223, 255, 0.05) 0%, rgba(255, 255, 255, 0) 72%);
}

.project-card {
    position: relative;
}

.project-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 28%);
    pointer-events: none;
}

.project-card h3,
.project-card strong,
.project-faq-item h3 {
    color: var(--project-text);
}

.project-card blockquote {
    border-left-color: rgba(116, 223, 255, 0.5);
    background: rgba(116, 223, 255, 0.08);
    color: #bdd8ea;
}

.project-tags li,
.project-chip {
    border-color: rgba(116, 223, 255, 0.18);
    background: rgba(116, 223, 255, 0.1);
    color: #bdefff;
}

.project-feature-list li {
    color: #c6d6e8;
}

.project-feature-list li::before {
    background: linear-gradient(140deg, #73f5c7 0%, #75defe 100%);
}

.project-journey__list li {
    min-height: 220px;
}

.project-journey__list strong {
    color: #77f3c9;
}

.project-ai__inner {
    border-color: rgba(116, 223, 255, 0.18);
    background:
            radial-gradient(circle at 78% 22%, rgba(115, 245, 199, 0.14) 0%, transparent 18%),
            linear-gradient(140deg, rgba(10, 18, 31, 0.98) 0%, rgba(12, 27, 44, 0.98) 52%, rgba(13, 83, 113, 0.98) 100%);
}

.project-ai__inner span,
.project-ai__inner li {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
}

.project-contact__inner {
    background:
            radial-gradient(circle at 50% 0%, rgba(115, 245, 199, 0.16) 0%, transparent 30%),
            linear-gradient(135deg, rgba(12, 22, 37, 0.98) 0%, rgba(10, 18, 31, 0.96) 100%);
}

.project-footer {
    border-top-color: rgba(120, 169, 255, 0.12);
    background: rgba(6, 14, 24, 0.86);
}

.project-float {
    color: #07101c;
    background: linear-gradient(180deg, #73f5c7 0%, #75defe 42%, #a7efff 100%);
    box-shadow: 0 20px 40px rgba(24, 116, 184, 0.3);
}

.project-modal-shell__overlay {
    background: rgba(2, 7, 14, 0.72);
}

.project-modal__close {
    color: var(--project-text-soft);
    background: rgba(255, 255, 255, 0.04);
}

.project-form__field input,
.project-form__field textarea,
.project-form__field select {
    color: var(--project-text);
    border-color: rgba(120, 169, 255, 0.16);
    background: rgba(8, 16, 28, 0.76);
}

.project-form__field input::placeholder {
    color: rgba(159, 180, 203, 0.68);
}

.project-form__error,
.project-form__feedback {
    color: #ffd1c2;
}

@media (max-width: 980px) {
    .project-hero {
        padding-top: 44px;
    }

    .project-nav {
        border-color: rgba(120, 169, 255, 0.18);
        background: rgba(8, 16, 28, 0.96);
    }
}

.project-shell {
    width: min(1320px, calc(100% - 88px));
}

.project-section {
    padding: 108px 0;
}

.project-section--compact {
    padding-top: 12px;
    padding-bottom: 74px;
}

.project-section__head {
    max-width: 920px;
    margin-bottom: 42px;
}

.project-section__head p {
    margin-top: 14px;
    max-width: 760px;
    color: var(--project-text-soft);
    font-size: 17px;
}

.project-hero {
    padding: 118px 0 82px;
}

.project-hero__inner {
    gap: 44px;
    grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
}

.project-hero__content {
    padding: 58px 54px 52px;
    border-radius: 34px;
}

.project-hero h1 {
    max-width: 780px;
    font-size: clamp(42px, 5vw, 70px);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.project-subhero h1 {
    font-size: clamp(36px, 4vw, 58px);
}

.project-hero p,
.project-subhero p {
    max-width: 720px;
    font-size: 18px;
    line-height: 1.78;
}

.project-hero__actions {
    margin-top: 34px;
    gap: 16px;
}

.project-hero__stats {
    margin-top: 44px;
    gap: 18px;
}

.project-hero__stats li {
    padding: 18px 18px 16px;
    border-radius: 18px;
}

.project-hero__panel {
    gap: 18px;
}

.project-hero-visual {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(120, 169, 255, 0.18);
    background: linear-gradient(180deg, rgba(12, 22, 38, 0.98) 0%, rgba(9, 18, 31, 0.96) 100%);
    box-shadow: var(--project-shadow);
    padding: 18px;
}

.project-hero-visual__canvas {
    display: grid;
    gap: 18px;
    min-height: 432px;
    padding: 22px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background:
            radial-gradient(circle at 80% 16%, rgba(116, 223, 255, 0.12) 0%, transparent 18%),
            radial-gradient(circle at 12% 92%, rgba(115, 245, 199, 0.1) 0%, transparent 24%),
            linear-gradient(180deg, rgba(14, 24, 41, 0.96) 0%, rgba(8, 17, 30, 0.96) 100%);
}

.project-hero-visual__toolbar {
    display: flex;
    gap: 8px;
}

.project-hero-visual__toolbar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
}

.project-hero-visual__toolbar span:first-child {
    background: rgba(115, 245, 199, 0.76);
}

.project-hero-visual__toolbar span:nth-child(2) {
    background: rgba(116, 223, 255, 0.72);
}

.project-hero-visual__summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.project-mini-tile {
    padding: 14px 14px 12px;
    border-radius: 16px;
    border: 1px solid rgba(120, 169, 255, 0.14);
    background: rgba(255, 255, 255, 0.03);
}

.project-mini-tile small {
    display: block;
    color: var(--project-text-soft);
    font-size: 12px;
    margin-bottom: 6px;
}

.project-mini-tile strong {
    color: var(--project-text);
    font-size: 24px;
    line-height: 1;
}

.project-hero-visual__board {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    flex: 1;
}

.project-board-lane {
    padding: 14px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}

.project-board-lane span {
    display: inline-block;
    color: var(--project-text-soft);
    font-size: 12px;
    margin-bottom: 12px;
}

.project-board-lane i,
.project-scene__kanban-lane i,
.project-scene__cards i,
.project-scene__command-main i,
.project-scene__command-side i,
.project-scene__list i {
    display: block;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.04) 100%);
}

.project-board-lane i {
    height: 58px;
    margin-bottom: 10px;
}

.project-board-lane i.is-wide,
.project-scene__cards i.is-wide,
.project-scene__list i.is-wide,
.project-scene__command-main i.is-wide,
.project-scene__command-side i.is-wide {
    height: 72px;
}

.project-board-lane i.is-accent,
.project-scene__kanban-lane i.is-accent {
    background: linear-gradient(135deg, rgba(115, 245, 199, 0.22) 0%, rgba(116, 223, 255, 0.22) 100%);
}

.project-hero-visual__timeline,
.project-scene__nodes {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    align-items: center;
}

.project-hero-visual__timeline span,
.project-scene__nodes span {
    position: relative;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.project-hero-visual__timeline span.is-active,
.project-scene__nodes span.is-active {
    background: rgba(115, 245, 199, 0.3);
}

.project-hero-visual__timeline span.is-focus,
.project-scene__nodes span.is-focus {
    background: rgba(116, 223, 255, 0.44);
}

.project-hero-visual figcaption {
    margin-top: 16px;
    color: var(--project-text-soft);
    font-size: 15px;
    line-height: 1.7;
}

.project-hero-visual__badge {
    position: absolute;
    display: grid;
    gap: 4px;
    min-width: 150px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(120, 169, 255, 0.16);
    background: rgba(8, 17, 31, 0.82);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 32px rgba(4, 10, 22, 0.32);
}

.project-hero-visual__badge span {
    color: var(--project-text-soft);
    font-size: 12px;
}

.project-hero-visual__badge strong {
    color: var(--project-text);
    font-size: 22px;
    line-height: 1.1;
}

.project-hero-visual__badge--top {
    top: 34px;
    right: 32px;
}

.project-hero-visual__badge--bottom {
    left: 34px;
    bottom: 84px;
}

.pipeline-card {
    padding: 28px 28px 26px;
    border-radius: 26px;
}

.pipeline-card--accent {
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-showcase-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: 24px;
    align-items: stretch;
}

.project-shot {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 18px;
    border-radius: 28px;
    border: 1px solid rgba(120, 169, 255, 0.16);
    background: linear-gradient(180deg, rgba(13, 22, 38, 0.94) 0%, rgba(8, 16, 28, 0.92) 100%);
    box-shadow: var(--project-shadow);
}

.project-shot--wide {
    grid-row: span 2;
}

.project-shot__scene {
    min-height: 280px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background:
            radial-gradient(circle at 82% 18%, rgba(116, 223, 255, 0.12) 0%, transparent 18%),
            linear-gradient(180deg, rgba(13, 22, 38, 0.98) 0%, rgba(8, 16, 28, 0.96) 100%);
    padding: 20px;
    display: grid;
    gap: 16px;
}

.project-shot__scene--cockpit,
.project-shot__scene--command {
    min-height: 412px;
}

.project-scene__topline,
.project-scene__header-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.project-scene__pill,
.project-scene__header-grid span {
    height: 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.project-scene__pill--long {
    grid-column: span 2;
}

.project-scene__frame,
.project-scene__command-body {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(160px, 0.9fr);
    gap: 14px;
    flex: 1;
}

.project-scene__bars,
.project-scene__command-main {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    align-items: end;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
}

.project-scene__bars span {
    display: block;
    height: var(--bar-h);
    min-height: 48px;
    border-radius: 14px 14px 6px 6px;
    background: linear-gradient(180deg, rgba(115, 245, 199, 0.82) 0%, rgba(116, 223, 255, 0.3) 100%);
}

.project-scene__list,
.project-scene__command-side {
    display: grid;
    gap: 10px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
}

.project-scene__list i {
    height: 42px;
}

.project-scene__kanban {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    height: 100%;
}

.project-scene__kanban-lane {
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
}

.project-scene__kanban-lane b {
    display: block;
    width: 56%;
    height: 12px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.project-scene__kanban-lane i {
    height: 44px;
    margin-bottom: 10px;
}

.project-scene__cards {
    display: grid;
    gap: 12px;
}

.project-scene__cards i {
    height: 62px;
}

.project-scene__command-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
}

.project-scene__command-main i {
    min-height: 82px;
}

.project-scene__command-main i.is-tall {
    min-height: 132px;
}

.project-scene__command-side i {
    min-height: 56px;
}

.project-shot figcaption {
    display: grid;
    gap: 6px;
}

.project-shot figcaption strong {
    color: var(--project-text);
    font-size: 22px;
    font-weight: 600;
}

.project-shot figcaption span {
    color: var(--project-text-soft);
    font-size: 15px;
    line-height: 1.7;
}

.project-grid {
    gap: 24px;
}

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

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

.project-card {
    padding: 30px;
    border-radius: 24px;
}

.project-card--feature {
    min-height: 432px;
}

.project-card__media {
    height: 184px;
    margin-bottom: 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background:
            radial-gradient(circle at 18% 22%, rgba(115, 245, 199, 0.24) 0%, transparent 16%),
            linear-gradient(180deg, rgba(18, 30, 50, 0.96) 0%, rgba(9, 17, 31, 0.96) 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    position: relative;
    overflow: hidden;
}

.project-card__media::before,
.project-card__media::after {
    content: "";
    position: absolute;
    border-radius: 18px;
}

.project-card__media::before {
    inset: 18px;
    background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0 16%, transparent 16%),
            linear-gradient(90deg, transparent 0 12%, rgba(255, 255, 255, 0.06) 12% 13%, transparent 13% 48%, rgba(255, 255, 255, 0.06) 48% 49%, transparent 49% 100%),
            linear-gradient(180deg, rgba(18, 34, 58, 0.98) 0%, rgba(10, 18, 31, 0.96) 100%);
}

.project-card__media::after {
    left: 34px;
    right: 34px;
    bottom: 24px;
    height: 44px;
    background: linear-gradient(90deg, rgba(115, 245, 199, 0.16) 0%, rgba(116, 223, 255, 0.08) 100%);
    box-shadow:
            0 -70px 0 -12px rgba(255, 255, 255, 0.05),
            0 -122px 0 -20px rgba(255, 255, 255, 0.04);
}

.project-grid--capability .project-card:nth-child(2) .project-card__media {
    background: radial-gradient(circle at 78% 24%, rgba(116, 223, 255, 0.22) 0%, transparent 18%), linear-gradient(180deg, rgba(18, 30, 50, 0.96) 0%, rgba(9, 17, 31, 0.96) 100%);
}

.project-grid--capability .project-card:nth-child(3) .project-card__media {
    background: radial-gradient(circle at 50% 18%, rgba(115, 245, 199, 0.24) 0%, transparent 16%), linear-gradient(180deg, rgba(18, 30, 50, 0.96) 0%, rgba(9, 17, 31, 0.96) 100%);
}

.project-grid--capability .project-card:nth-child(4) .project-card__media {
    background: radial-gradient(circle at 18% 78%, rgba(94, 124, 255, 0.24) 0%, transparent 18%), linear-gradient(180deg, rgba(18, 30, 50, 0.96) 0%, rgba(9, 17, 31, 0.96) 100%);
}

.project-grid--capability .project-card:nth-child(5) .project-card__media {
    background: radial-gradient(circle at 82% 18%, rgba(116, 223, 255, 0.24) 0%, transparent 18%), linear-gradient(180deg, rgba(18, 30, 50, 0.96) 0%, rgba(9, 17, 31, 0.96) 100%);
}

.project-grid--capability .project-card:nth-child(6) .project-card__media {
    background: radial-gradient(circle at 24% 24%, rgba(115, 245, 199, 0.22) 0%, transparent 18%), linear-gradient(180deg, rgba(18, 30, 50, 0.96) 0%, rgba(9, 17, 31, 0.96) 100%);
}

.project-grid--capability .project-card p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.project-grid--industry .project-card,
.project-grid--cases .project-card {
    min-height: 320px;
}

.project-grid--industry .project-card p:last-of-type,
.project-grid--cases .project-card p:last-of-type {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.project-card--case-preview blockquote {
    margin-top: 18px;
}

.project-ai__inner {
    padding: 52px 52px;
    border-radius: 34px;
}

.project-contact {
    padding-top: 72px;
    padding-bottom: 126px;
}

.project-contact__inner {
    padding: 76px 42px;
    border-radius: 34px;
}

.project-subhero .project-shell {
    padding: 48px 50px;
    border-radius: 30px;
}

@media (max-width: 1180px) {
    .project-shell {
        width: min(1320px, calc(100% - 56px));
    }

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

    .project-shot--wide {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .project-grid--industry,
    .project-grid--cases {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .project-hero {
        padding: 62px 0 48px;
    }

    .project-shell {
        width: min(1320px, calc(100% - 36px));
    }

    .project-section {
        padding: 82px 0;
    }

    .project-hero__content,
    .project-subhero .project-shell,
    .project-ai__inner,
    .project-contact__inner {
        padding: 34px 28px;
    }

    .project-hero-visual__canvas {
        min-height: 320px;
    }

    .project-hero-visual__badge--top {
        top: 28px;
        right: 26px;
    }

    .project-hero-visual__badge--bottom {
        left: 28px;
        bottom: 72px;
    }

    .project-grid--cases,
    .project-showcase-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .project-shell {
        width: min(1320px, calc(100% - 24px));
    }

    .project-section {
        padding: 72px 0;
    }

    .project-hero__content,
    .project-subhero .project-shell,
    .project-ai__inner,
    .project-contact__inner,
    .project-card,
    .project-shot,
    .pipeline-card {
        padding: 24px 20px;
    }

    .project-hero h1,
    .project-subhero h1 {
        font-size: clamp(34px, 9vw, 46px);
    }

    .project-hero p,
    .project-subhero p,
    .project-section__head p {
        font-size: 16px;
    }

    .project-hero-visual__canvas {
        min-height: 240px;
        padding: 16px;
    }

    .project-hero-visual__badge {
        min-width: 126px;
        padding: 10px 12px;
    }

    .project-hero-visual__badge strong {
        font-size: 18px;
    }

    .project-grid--industry,
    .project-grid--cases,
    .project-showcase-grid {
        grid-template-columns: 1fr;
    }

    .project-card__media {
        height: 152px;
    }

    .project-card--feature {
        min-height: auto;
    }

    .project-hero-visual__summary,
    .project-hero-visual__board,
    .project-scene__kanban,
    .project-scene__frame,
    .project-scene__command-body {
        grid-template-columns: 1fr;
    }
}
