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

img {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    -webkit-user-drag: none !important;
    -khtml-user-drag: none !important;
    -moz-user-drag: none !important;
    -o-user-drag: none !important;
    user-drag: none !important;
    -webkit-touch-callout: none !important;
    pointer-events: none;
}

img.hero-inline-icon,
.logo-icon {
    pointer-events: none;
}

a {
    pointer-events: auto;
}

button,
input,
select,
textarea,
video {
    pointer-events: auto;
}

:root {
    --header-height: 81px;
    --page-width: 1280px;
    --page-gutter: 24px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: #f3f3f1;
    color: #000000;
    line-height: 1.4;
    padding-top: var(--header-height);
}

.scroll-enter {
    opacity: 0;
    transform: translate3d(0, 36px, 0);
    transition:
        opacity 620ms cubic-bezier(0.22, 1, 0.36, 1) var(--enter-delay, 0ms),
        transform 620ms cubic-bezier(0.22, 1, 0.36, 1) var(--enter-delay, 0ms);
    will-change: opacity, transform;
}

.scroll-enter.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
    .scroll-enter,
    .scroll-enter.is-visible {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.main {
    width: min(calc(100% - (var(--page-gutter) * 2)), var(--page-width));
    margin: 0 auto;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    padding: 20px 40px;
    background: rgba(243, 243, 241, 0.96);
    border-bottom: 1px solid #e7e7e2;
    backdrop-filter: blur(12px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: min(calc(100% - (var(--page-gutter) * 2)), var(--page-width));
    margin: 0 auto;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
}

a.nav-left-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: inherit;
    text-decoration: none;
    background: none;
    cursor: pointer;
    padding: 0;
    pointer-events: auto;
}

a.nav-left-link:visited,
a.nav-left-link:hover,
a.nav-left-link:active {
    color: inherit;
    text-decoration: none;
}

.logo-icon {
    width: 28px;
    height: auto;
    flex-shrink: 0;
    display: block;
}

.logo-text {
    line-height: 1;
}

.nav-right {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #000000;
    font-size: 13px;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
}

.nav-link:hover {
    opacity: 0.7;
}

/* Hero */
.hero {
    padding: 80px 0;
}

.hero-title {
    font-size: clamp(22px, 3.84vw, 51px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
    max-width: min(100%, 1320px);
    text-wrap: balance;
}

.hero-inline-icon {
    display: inline-block;
    width: 0.8em;
    height: 0.8em;
    margin: 0 0.08em;
    vertical-align: -0.1em;
    object-fit: contain;
}

/* Work Sections */
.work-section {
    padding: 34px 0;
}

.work-item {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 1240px;
    margin: 0 auto;
}

a.work-item-link {
    display: block;
    color: inherit;
    text-decoration: none;
    background: transparent;
    pointer-events: auto;
    cursor: pointer;
}

a.work-item-link:visited,
a.work-item-link:hover,
a.work-item-link:active {
    color: inherit;
    text-decoration: none;
}

.work-item-right {
    flex-direction: row;
}

.work-item-left {
    flex-direction: row-reverse;
}

.work-image {
    flex: 0 0 52%;
    min-width: 0;
}

.work-image img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.work-content {
    flex: 0 0 34%;
    min-width: 0;
    padding: 0;
}

.work-title {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 14px;
}

.work-desc {
    font-size: 11px;
    line-height: 1.45;
    color: #555555;
    margin-bottom: 18px;
    max-width: 360px;
}

.view-btn {
    background: #000000;
    color: #ffffff;
    border: none;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.view-btn:hover {
    opacity: 0.8;
}

.view-btn-link {
    appearance: none;
}

body.home-page .view-btn {
    width: 70px;
    height: 35px;
    font-size: 13px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.14), 0 1px 2px rgba(0, 0, 0, 0.08);
    transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 220ms cubic-bezier(0.22, 1, 0.36, 1),
                opacity 220ms ease;
}

body.home-page .view-btn:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18), 0 2px 6px rgba(0, 0, 0, 0.12);
}

body.home-page .view-btn:active {
    transform: translateY(1px) scale(0.985);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2), 0 1px 1px rgba(0, 0, 0, 0.12);
}

/* Footer */
.footer {
    padding: 40px;
    border-top: 1px solid #e5e5e5;
    margin-top: 40px;
}

.footer-content p {
    font-size: 14px;
    font-weight: 500;
}

.footer-content {
    width: min(calc(100% - (var(--page-gutter) * 2)), var(--page-width));
    margin: 0 auto;
}

/* About Page */
.about-main {
    width: min(calc(100% - (var(--page-gutter) * 2)), 1040px);
    margin: 0 auto;
    padding-top: 54px;
    padding-bottom: 80px;
}

.citi-page {
    background: #ffffff;
}

.citi-main {
    position: relative;
    width: min(calc(100% - (var(--page-gutter) * 2)), 1040px);
    margin: 0 auto;
    padding-top: 0;
    padding-bottom: 80px;
}

.citi-main > .back-home-btn {
    position: fixed;
    top: calc(var(--header-height) + 16px);
    left: max(var(--page-gutter), calc((100vw - 1040px) / 2));
    z-index: 1001;
}

.ux-work-main > .back-home-btn {
    margin-bottom: 30px;
}

.citi-detail-figure {
    margin: 0;
}

.citi-detail-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.citi-editor {
    display: grid;
    gap: 44px;
}

.citi-page [contenteditable="true"] {
    outline: none;
}

.citi-page [contenteditable="true"][data-placeholder]:empty::before {
    content: attr(data-placeholder);
    color: #97a3bd;
}

.citi-hero-section {
    position: relative;
    z-index: 0;
    display: grid;
    align-content: start;
    gap: 14px;
    overflow: hidden;
    width: 100vw;
    min-height: clamp(520px, 48vw, 700px);
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 0;
    padding-top: 54px;
    padding-right: max(var(--page-gutter), calc((100vw - 1040px) / 2));
    padding-bottom: 36px;
    padding-left: max(var(--page-gutter), calc((100vw - 1040px) / 2));
    background-image: url("citi-hero-background.png?v=20260801a");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
}

.citi-brand-logo-wrap {
    margin: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.citi-brand-logo {
    display: block;
    width: min(100%, 72px);
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
}

.citi-hero-meta {
    margin: 0;
    color: #6d7894;
    font-size: 14px;
    line-height: 1.5;
}

.citi-hero-title {
    margin: 0;
    font-size: 34px;
    line-height: 1.12;
    font-weight: 700;
    color: #5d5c5c;
}

.citi-editable-block {
    min-height: 24px;
    color: #33415e;
    font-size: 15px;
    line-height: 1.7;
}

.citi-hero-summary {
    max-width: 500px;
    min-height: 88px;
}

.citi-hero-note {
    color: #ff5b96;
}

.citi-hero-summary-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 24px;
    margin-top: 28px;
}

.citi-hero-side-figure {
    margin: 0;
}

.citi-hero-side-image {
    display: block;
    width: auto;
    max-width: 600px;
    height: auto;
}

.citi-section {
    display: grid;
    gap: 18px;
}

.citi-challenge-frame {
    display: grid;
    gap: 38px;
    padding: 8px 0 26px;
}

.citi-pain-showcase {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.08fr);
    gap: 10px;
    align-items: start;
    padding: 6px 0 26px;
}

.citi-pain-showcase-visual {
    display: grid;
    gap: 34px;
    justify-items: start;
}

.citi-pain-showcase-title {
    font-size: 17px;
    line-height: 1.16;
    font-weight: 700;
    color: #313131;
}

.citi-pain-showcase-figure {
    margin: 0;
    padding: 0;
    width: 70%;
}

.citi-pain-showcase-image {
    display: block;
    width: 120%;
    height: auto;
}

.citi-pain-showcase-notes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 100%;
    column-gap: 28px;
    row-gap: 36px;
    padding-top: 52px;
    justify-self: start;
    min-width: 0;
}

.citi-pain-showcase-note {
    display: grid;
    gap: 14px;
    min-width: 0;
}

.citi-pain-showcase-note-1,
.citi-pain-showcase-note-2,
.citi-pain-showcase-note-3,
.citi-pain-showcase-note-4 {
    padding-left: 0;
}

.citi-pain-showcase-note-2,
.citi-pain-showcase-note-4 {
    margin-left: -15px;
}

.citi-pain-showcase-note-title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 125px;
    height: 38px;
    padding: 0;
    border: 1px solid #c8d0ff;
    color: #ffffff;
    background: #5e6dc3;
    box-shadow: 8px 6px 0 #d9def8;
    font-size: 17px;
    line-height: 1;
    font-weight: 700;
}

.citi-pain-showcase-note-copy {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: anywhere;
    color: #838383;
    font-size: 16px;
    line-height: 1.65;
}

.citi-challenge-frame-title {
    font-size: 17px;
    line-height: 1.14;
    font-weight: 700;
    color: #3f3f3f;
}

.citi-challenge-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.citi-challenge-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 226px;
    padding: 28px 22px 20px;
    border-radius: 18px;
    background: #ecefff;
    box-shadow: 0 8px 18px rgba(170, 179, 228, 0.22);
}

.citi-challenge-icon {
    position: absolute;
    left: 18px;
    top: 10px;
    transform: scale(0.56);
    transform-origin: top left;
}

.citi-challenge-icon-search {
    width: 78px;
    height: 78px;
}

.citi-challenge-icon-search::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 10px;
    width: 40px;
    height: 40px;
    border: 4px solid #67708f;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 10px rgba(92, 101, 132, 0.18);
}

.citi-challenge-icon-search::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 46px;
    width: 8px;
    height: 36px;
    border-radius: 999px;
    background: #67708f;
    transform: rotate(42deg);
    transform-origin: top center;
}

.citi-challenge-icon-user {
    width: 86px;
    height: 86px;
}

.citi-challenge-icon-user::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 0;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: linear-gradient(180deg, #8dbfff 0%, #76a9eb 100%);
    box-shadow: 0 8px 18px rgba(110, 149, 218, 0.28);
}

.citi-challenge-icon-user::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 54px;
    width: 78px;
    height: 44px;
    border-radius: 44px 44px 10px 10px;
    background: linear-gradient(180deg, #89b9fb 0%, #5e9cf0 100%);
    box-shadow: 0 10px 18px rgba(94, 156, 240, 0.18);
}

.citi-challenge-icon-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    width: 96px;
    height: 96px;
}

.citi-challenge-icon-bars span {
    display: block;
    width: 26px;
    border-radius: 4px;
    box-shadow: 0 10px 18px rgba(137, 103, 225, 0.2);
}

.citi-challenge-icon-bars span:nth-child(1) {
    height: 94px;
    background: linear-gradient(180deg, #ff8f8f 0%, #f06b6b 100%);
}

.citi-challenge-icon-bars span:nth-child(2) {
    height: 62px;
    background: linear-gradient(180deg, #c96cff 0%, #9648d9 100%);
}

.citi-challenge-icon-bars span:nth-child(3) {
    height: 36px;
    background: linear-gradient(180deg, #7c89ff 0%, #6c61e7 100%);
}

.citi-challenge-card-title {
    margin-bottom: 14px;
    padding-top: 0;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    color: #5d6ac8;
    text-align: center;
}

.citi-challenge-card-copy {
    flex: 1;
    display: flex;
    align-items: center;
    color: #7e7a7a;
    font-size: 16px;
    line-height: 1.8;
}

.citi-section-title {
    font-size: 17px;
    line-height: 1.16;
    font-weight: 700;
    color: #111111;
}

.citi-subsection-title {
    margin: 0 0 16px;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 700;
    color: #111111;
}

.citi-strategy-card + .citi-subsection-title {
    margin-top: 20px;
}

.citi-results-grid + .citi-subsection-title {
    margin-top: 35px;
}

.citi-reference-panel {
    width: 100%;
    border: 1px solid #dbe5f5;
    border-radius: 20px;
    background-color: #eef3fb;
    background-image: url("citi-detail.png?v=20260731a");
    background-repeat: no-repeat;
    background-size: 100% auto;
    box-shadow: 0 18px 32px rgba(114, 136, 184, 0.12);
}

.citi-reference-panel-overview {
    min-height: 420px;
    background-position: center 0;
}

.citi-insight-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 20px;
}

.citi-insight-layout-persona-only {
    grid-template-columns: 1fr;
}

.citi-insight-cards,
.citi-persona-list,
.citi-summary-grid {
    display: grid;
    gap: 16px;
}

.citi-results-feedback-list {
    margin-bottom: 16px;
}

.citi-results-feedback-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding: 20px;
    border-radius: 18px;
    background: transparent;
    border: 0;
}

.citi-results-feedback-item {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.citi-card,
.citi-summary-card,
.citi-strategy-card,
.citi-result-card {
    padding: 20px;
    border-radius: 18px;
    background: #f3f6ff;
    border: 1px solid #dbe5f5;
}

.citi-persona-card {
    padding: 20px;
    border-radius: 18px;
    background: transparent;
    border: 1px solid #dbe5f5;
    display: grid;
    grid-template-columns: 86.4px minmax(0, 1fr);
    align-items: start;
    column-gap: 20px;
    text-align: left;
}

.citi-persona-card-image-right {
    grid-template-columns: minmax(0, 1fr) 86.4px;
}

.citi-persona-card-image-right .citi-persona-avatar {
    order: 2;
    justify-self: end;
}

.citi-persona-card-image-right .citi-persona-content {
    order: 1;
    text-align: right;
    justify-items: end;
}

.citi-persona-content {
    display: grid;
    gap: 10px;
    min-width: 0;
}

.citi-card-title,
.citi-persona-name {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    color: #5067dc;
}

.citi-summary-card .citi-card-title {
    margin: 0 0 10px;
    font-size: 16px;
}

.citi-persona-avatar {
    display: block;
    width: 86.4px;
    height: 86.4px;
    border-radius: 50%;
    border: 1px solid #cbd7ff;
    background: #e9eeff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    flex-shrink: 0;
}

.citi-persona-avatar-1 {
    background-image: url("citi-persona-avatar-1.png");
}

.citi-persona-avatar-2 {
    background-image: url("citi-persona-avatar-2.png");
}

.citi-persona-avatar-3 {
    background-image: url("citi-persona-avatar-3.png");
}

.citi-persona-quote {
    min-height: 56px;
    margin-bottom: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    background: #e9eeff;
    width: fit-content;
    max-width: 100%;
    font-weight: 700;
}

.citi-section-intro {
    max-width: none;
    width: fit-content;
    min-height: 56px;
    white-space: nowrap;
}

.citi-results-feedback-item.citi-persona-card {
    border: 0;
}

.citi-analysis-table {
    display: grid;
    grid-template-columns: 140px repeat(5, minmax(0, 1fr));
    gap: 8px;
}

.citi-analysis-cell {
    min-height: 74px;
    padding: 14px 12px;
    border-radius: 12px;
    background: #eef4ff;
    border: 1px solid #d6e2f6;
    color: #3a4865;
    font-size: 13px;
    line-height: 1.55;
}

.citi-analysis-head,
.citi-analysis-side {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #7bb0ef;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
}

.citi-analysis-head {
    min-height: 52px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.citi-flowchart {
    position: relative;
    display: grid;
    gap: 22px;
    padding: 28px 24px;
    border-radius: 20px;
    background: transparent;
    border: 0;
}

.citi-flowchart-root {
    position: relative;
    justify-self: center;
    min-width: 260px;
    z-index: 1;
}

.citi-flowchart-root::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    width: 2px;
    height: 28px;
    background: #4d8de6;
    border-radius: 999px;
    transform: translateX(-50%);
}

.citi-flowchart-row {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    padding-top: 28px;
}

.citi-flowchart-row-detail {
    width: 70%;
    margin-left: 27.5%;
}

.citi-flowchart-row-main::before,
.citi-flowchart-row-detail::before {
    content: "";
    position: absolute;
    top: 0;
    left: 12.5%;
    width: 75%;
    height: 28px;
    background:
        linear-gradient(#4d8de6, #4d8de6) left top / 100% 2px no-repeat,
        linear-gradient(#4d8de6, #4d8de6) left top / 2px 28px no-repeat,
        linear-gradient(#4d8de6, #4d8de6) 33.333% top / 2px 28px no-repeat,
        linear-gradient(#4d8de6, #4d8de6) 66.666% top / 2px 28px no-repeat,
        linear-gradient(#4d8de6, #4d8de6) right top / 2px 28px no-repeat;
}

.citi-flowchart-row-detail::after {
    content: "";
    position: absolute;
    left: 50%;
    top: -28px;
    width: 2px;
    height: 30px;
    background: #4d8de6;
    border-radius: 999px;
    transform: translateX(-50%);
}

.citi-flowchart-node {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    padding: 16px 14px;
    border-radius: 12px;
    border: 2px solid #4d8de6;
    background: #ffffff;
    color: #3a4865;
    font-size: 14px;
    line-height: 1.45;
    text-align: center;
    z-index: 1;
}

.citi-strategy-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.citi-strategy-section .citi-strategy-grid {
    grid-template-columns: minmax(0, 1fr);
}

.citi-strategy-tag-row {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}

.citi-strategy-tag {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    margin-bottom: 0;
    padding: 0 12px;
    border-radius: 999px;
    background: #6f89ff;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.citi-strategy-tag-detail {
    justify-self: end;
    margin-right: 50%;
}

.citi-strategy-figure {
    margin: 0;
    width: 100%;
}

.citi-strategy-card {
    display: grid;
    gap: 18px;
}

.citi-strategy-image {
    display: block;
    width: 100%;
    height: auto;
}

.citi-strategy-reference-board {
    display: grid;
    gap: 10px;
    padding: 10px;
    border-radius: 14px;
    background: #f2f2f2;
}

.citi-strategy-reference-header,
.citi-strategy-reference-row {
    display: grid;
    grid-template-columns: 138px repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.citi-strategy-reference-stage,
.citi-strategy-reference-pill,
.citi-strategy-reference-label {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 12px 10px;
    border-radius: 18px;
    background: #6f89ff;
    color: #ffffff;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 4px 8px rgba(67, 96, 203, 0.18);
}

.citi-strategy-reference-label {
    min-height: 116px;
    border-radius: 8px;
}

.citi-strategy-reference-cell,
.citi-strategy-reference-curve {
    min-height: 116px;
    padding: 18px 34px;
    background: #d9e5f1;
    color: #5a5f67;
    font-size: 12px;
    line-height: 1.65;
}

.citi-strategy-reference-cell {
    white-space: normal;
}

.citi-strategy-reference-row-curve .citi-strategy-reference-label {
    min-height: 132px;
}

.citi-strategy-reference-curve {
    position: relative;
    grid-column: 2 / span 5;
    min-height: 132px;
    overflow: hidden;
}

.citi-strategy-reference-curve-shape {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.citi-strategy-reference-point {
    position: absolute;
    color: #5d6ef4;
    font-size: 12px;
    line-height: 1.5;
}

.citi-strategy-reference-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #5d6ef4;
}

.citi-strategy-reference-point-title {
    font-weight: 700;
}

.citi-strategy-reference-point-1 {
    left: 10.5%;
    top: 57%;
}

.citi-strategy-reference-point-1 .citi-strategy-reference-dot {
    left: -14px;
    top: -2px;
}

.citi-strategy-reference-point-2 {
    left: 30.5%;
    top: calc(64% - 10px);
}

.citi-strategy-reference-point-2 .citi-strategy-reference-dot {
    left: -14px;
    top: 2px;
}

.citi-strategy-reference-point-3 {
    left: 52%;
    top: 48%;
}

.citi-strategy-reference-point-3 .citi-strategy-reference-dot {
    left: -14px;
    top: 22px;
}

.citi-strategy-reference-point-4 {
    left: 76%;
    top: calc(60% - 20px);
}

.citi-strategy-reference-point-4 .citi-strategy-reference-dot {
    left: -14px;
    top: -16px;
}

.citi-strategy-reference-point-4 .citi-strategy-reference-point-title,
.citi-strategy-reference-point-4 .citi-strategy-reference-point-body {
    transform: translateX(-15px);
}

.citi-strategy-reference-point-5 {
    left: calc(96% + 40px);
    top: calc(41% - 10px);
    transform: translateX(-100%);
    text-align: left;
}

.citi-strategy-reference-point-5 .citi-strategy-reference-dot {
    left: -14px;
    top: -10px;
}

.citi-strategy-reference-point-5 .citi-strategy-reference-point-title,
.citi-strategy-reference-point-5 .citi-strategy-reference-point-body {
    transform: translateX(-15px);
}

.citi-strategy-reference-point-5 .citi-strategy-reference-point-body {
    min-width: 112px;
}

.citi-reference-panel-dashboard,
.citi-reference-panel-detail {
    min-height: 360px;
    margin-bottom: 14px;
}

.citi-reference-panel-dashboard {
    background-position: center 68%;
}

.citi-reference-panel-detail {
    background-position: center 74%;
}

.citi-strategy-notes {
    display: grid;
    gap: 14px;
}

.citi-strategy-notes-top {
    width: fit-content;
    grid-template-columns: repeat(3, max-content);
    align-items: flex-start;
}

.citi-strategy-notes-bottom {
    grid-template-columns: repeat(2, minmax(0, max-content));
    align-items: flex-start;
}

.citi-strategy-notes .citi-editable-block {
    width: fit-content;
    max-width: 100%;
    font-size: 13px;
}

html[lang="en"] .citi-section-intro {
    width: 100%;
    white-space: normal;
}

html[lang="en"] .citi-strategy-notes-top {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

html[lang="en"] .citi-strategy-notes-bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

html[lang="en"] .citi-strategy-notes .citi-editable-block {
    width: 100%;
}

.citi-strategy-notes-top .citi-editable-block:first-child {
    grid-column: 1;
}

.citi-strategy-note-2 {
    grid-column: 2;
    transform: translateX(30%);
}

.citi-strategy-note-3 {
    grid-column: 3;
    transform: translateX(30%);
}

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

.citi-result-card {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 12px;
    min-height: 170px;
    background: linear-gradient(180deg, #edf2ff 0%, #e4ebff 100%);
}

.citi-result-value {
    color: #4f67f1;
    font-size: 42px;
    line-height: 1;
    font-weight: 700;
    text-align: right;
}

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

@media (max-width: 960px) {
    .citi-pain-showcase,
    .citi-pain-showcase-notes,
    .citi-insight-layout,
    .citi-strategy-grid,
    .citi-strategy-notes,
    .citi-results-feedback-card,
    .citi-results-grid,
    .citi-summary-grid,
    .citi-flowchart-row,
    .citi-flowchart-row-detail {
        grid-template-columns: 1fr;
    }

    .citi-flowchart-root::after,
    .citi-flowchart-row-main::before,
    .citi-flowchart-row-detail::before,
    .citi-flowchart-row-detail::after,
    .citi-flowchart-row-main .citi-flowchart-node::before,
    .citi-flowchart-row-detail .citi-flowchart-node::before {
        display: none;
    }

    .citi-flowchart-row,
    .citi-flowchart-row-detail {
        width: 100%;
        margin-left: 0;
        padding-top: 0;
    }

    .citi-analysis-table {
        grid-template-columns: 1fr;
    }

    .citi-hero-summary-row {
        grid-template-columns: 1fr;
    }

    .citi-reference-panel-overview,
    .citi-reference-panel-dashboard,
    .citi-reference-panel-detail {
        min-height: 280px;
        background-size: cover;
    }

    .citi-strategy-reference-board {
        zoom: calc((100vw - 48px) / 960);
    }

    .citi-behavior-section,
    .citi-flowchart-scaled,
    .citi-strategy-card-scaled {
        zoom: calc((100vw - 48px) / 960);
    }

    .citi-behavior-section .citi-analysis-table {
        grid-template-columns: 140px repeat(5, minmax(0, 1fr));
    }

    .citi-flowchart-scaled .citi-flowchart-row {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        padding-top: 28px;
    }

    .citi-flowchart-scaled .citi-flowchart-row-detail {
        width: 70%;
        margin-left: 27.5%;
    }

    .citi-flowchart-scaled .citi-flowchart-root::after,
    .citi-flowchart-scaled .citi-flowchart-row-main::before,
    .citi-flowchart-scaled .citi-flowchart-row-detail::before,
    .citi-flowchart-scaled .citi-flowchart-row-detail::after,
    .citi-flowchart-scaled .citi-flowchart-row-main .citi-flowchart-node::before,
    .citi-flowchart-scaled .citi-flowchart-row-detail .citi-flowchart-node::before {
        display: block;
    }

    .citi-strategy-card-scaled .citi-strategy-notes-top {
        width: fit-content;
        grid-template-columns: repeat(3, max-content);
    }

    .citi-strategy-card-scaled .citi-strategy-notes-bottom {
        grid-template-columns: repeat(2, minmax(0, max-content));
    }

    html[lang="en"] .citi-strategy-card-scaled .citi-strategy-notes-top {
        width: 100%;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    html[lang="en"] .citi-strategy-card-scaled .citi-strategy-notes-bottom {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    html[lang="en"] .citi-strategy-card-scaled .citi-strategy-notes .citi-editable-block {
        width: 100%;
    }

    .citi-pain-showcase-note-1,
    .citi-pain-showcase-note-2,
    .citi-pain-showcase-note-3,
    .citi-pain-showcase-note-4 {
        padding-left: 0;
    }

    .citi-pain-showcase-notes {
        padding-top: 0;
    }
}

.back-home-btn {
    display: inline-flex;
    position: relative;
    z-index: 2;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid #d7d7d1;
    border-radius: 999px;
    color: #111111;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0;
    background: rgba(255, 255, 255, 0.55);
}

.sine-top-return {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 34px;
}

.sine-top-return .back-home-btn {
    align-self: flex-start;
    margin-bottom: 18px;
}

.sine-top-logo {
    display: block;
    align-self: center;
    width: min(100%, 224px);
    height: auto;
    background: transparent;
    border: 0;
    box-shadow: none;
    object-fit: contain;
}

.about-intro {
    max-width: 100%;
    margin: 0 0 56px;
}

.about-page-title {
    font-size: 54px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.04em;
    margin-bottom: 48px;
}

.about-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 72px;
    max-width: 520px;
}

.about-label {
    font-size: 11px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-value {
    font-size: 12px;
    line-height: 1.4;
    color: #6a6a6a;
}

.about-section {
    max-width: 100%;
    margin: 0 0 88px;
}

.about-section-title {
    font-size: 22px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 34px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 34px;
    margin-bottom: 34px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-meta {
    padding-top: 2px;
}

.timeline-date,
.timeline-role {
    font-size: 11px;
    line-height: 1.4;
    color: #6b6b6b;
}

.timeline-role {
    margin-top: 4px;
}

.timeline-company,
.timeline-project,
.timeline-award {
    font-size: 12px;
    line-height: 1.45;
    font-weight: 700;
    color: #111111;
}

.timeline-company {
    margin-bottom: 12px;
}

.timeline-project {
    margin-top: 14px;
    margin-bottom: 8px;
}

.timeline-project:first-of-type {
    margin-top: 0;
}

.timeline-paragraph,
.timeline-list {
    font-size: 11px;
    line-height: 1.55;
    color: #6a6a6a;
}

.timeline-paragraph {
    margin-bottom: 8px;
}

.timeline-paragraph:last-child {
    margin-bottom: 0;
}

.timeline-list {
    padding-left: 16px;
    margin-bottom: 10px;
}

.timeline-list:last-child {
    margin-bottom: 0;
}

.timeline-list li + li {
    margin-top: 5px;
}

.skill-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    max-width: 920px;
    margin-left: 20px;
}

.skill-card {
    min-height: 56px;
    border-radius: 8px;
    border: 1px solid #ddddda;
    background: #f7f7f5;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
    padding: 14px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;
    color: #1a1a1a;
}

.timeline-item-compact {
    margin-bottom: 18px;
}

.timeline-item-compact .timeline-company,
.timeline-item-compact .timeline-award {
    margin-bottom: 0;
}

/* UX Work Page */
.ux-work-main {
    width: min(calc(100% - (var(--page-gutter) * 2)), 1120px);
    margin: 0 auto;
    padding-top: 54px;
    padding-bottom: 72px;
}

.cgtn-page {
    background: #ffffff;
    padding-top: 0;
}

.cgtn-page .header {
    position: sticky;
}

.cgtn-main {
    width: min(calc(100% - (var(--page-gutter) * 2)), 1120px);
    margin: 0 auto;
    padding-top: 0;
    padding-bottom: 72px;
}

.cgtn-top-return {
    margin-bottom: 28px;
}

.cgtn-top-return .back-home-btn {
    margin-bottom: 0;
    background: #ffffff;
    opacity: 1;
}

.cgtn-frame-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0;
    background: transparent;
}

.cgtn-image-stack {
    display: grid;
    gap: 28px;
}

.cgtn-image-panel {
    margin: 0;
    overflow: hidden;
    background: transparent;
}

.cgtn-section-image,
.cgtn-showcase-image {
    display: block;
    width: 100%;
    height: auto;
}

.iplayer-page {
    background: #ffffff;
    padding-top: 0;
}

.iplayer-page .header {
    position: sticky;
}

.iplayer-main {
    width: min(calc(100% - (var(--page-gutter) * 2)), 1120px);
    margin: 0 auto;
    padding-top: 0;
    padding-bottom: 72px;
}

.iplayer-top-return {
    margin-bottom: 34px;
}

.iplayer-top-return .back-home-btn {
    margin-bottom: 0;
    background: #ffffff;
    opacity: 1;
}

.iplayer-editor {
    display: grid;
    gap: 0;
}

.iplayer-hero-section {
    padding: 36px 38px 34px;
    background: #ffffff;
    max-width: 1120px;
    margin-inline: auto;
    width: 100%;
    box-sizing: border-box;
}

.iplayer-logo-image {
    display: block;
    width: min(100%, 180px);
    height: auto;
    margin: 0 auto 28px;
    object-fit: contain;
}

.iplayer-page-title,
.iplayer-section-title {
    margin: 0;
    color: #4d4d4d;
    font-weight: 700;
}

.iplayer-page-title {
    font-size: 24px;
    line-height: 1.4;
    text-align: left;
}

.iplayer-hero-grid,
.iplayer-overview-section,
.iplayer-research-section {
    display: grid;
    gap: 34px;
}

.iplayer-hero-grid {
    grid-template-columns: 0.74fr 1.06fr;
    align-items: end;
    margin-top: 34px;
}

.iplayer-hero-copy,
.iplayer-overview-copy,
.iplayer-research-column,
.iplayer-overview-visuals,
.iplayer-ia-section,
.iplayer-journey-section {
    display: grid;
}

.iplayer-hero-copy {
    align-content: end;
    min-height: 270px;
}

.iplayer-editable {
    color: #5c5c5c;
    font-size: 13px;
    line-height: 2.05;
    outline: none;
}

.iplayer-video-links {
    display: grid;
    gap: 2px;
    margin-top: 18px;
    margin-bottom: 18px;
}

.iplayer-video-links a,
.iplayer-video-label {
    color: #8d77d5;
    font-size: 12px;
    line-height: 1.7;
    text-decoration: underline;
}

.iplayer-video-label {
    color: #d86f6f;
    font-weight: 700;
    text-decoration: none;
}

.iplayer-hero-meta {
    display: flex;
    grid-column: 1 / -1;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 41px;
    color: #111111;
    font-size: 11px;
    font-weight: 700;
}

.iplayer-overview-section,
.iplayer-research-section,
.iplayer-ia-section {
    padding: 52px 38px 0;
    background: #ffffff;
    max-width: 1120px;
    margin-inline: auto;
    width: 100%;
    box-sizing: border-box;
}

.iplayer-journey-section {
    padding: 60px 38px 64px;
    background: #ffffff;
    max-width: 1120px;
    margin-inline: auto;
    width: 100%;
    box-sizing: border-box;
}

.iplayer-overview-section {
    grid-template-columns: 1fr 0.94fr;
    align-items: stretch;
}

.iplayer-overview-visuals {
    gap: 16px;
}

.iplayer-overview-copy {
    align-content: space-between;
}

.iplayer-research-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 52px;
    align-items: start;
    padding-top: 62px;
}

.iplayer-section-title {
    margin-bottom: 20px;
    color: #d97c7c;
    font-size: 16px;
    line-height: 1.4;
}

.iplayer-ia-section .iplayer-section-title,
.iplayer-journey-section .iplayer-section-title {
    margin-bottom: 20px;
}

.iplayer-crop {
    margin: 0;
    width: 100%;
    background-image: url("iplayer-frame-83.png");
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-color: transparent;
}

.iplayer-crop-hero {
    aspect-ratio: 1.34 / 0.82;
    background-image: url("iplayer-hero-final0090.png");
    background-position: center;
    background-size: cover;
}

.iplayer-crop-video-grid {
    aspect-ratio: 1.31 / 0.66;
    background-image: url("iplayer-video-grid-group-71.png");
    background-position: center;
    background-size: cover;
}

.iplayer-crop-overview-top {
    aspect-ratio: 1.2 / 0.58;
    background-image: url("iplayer-overview-top-ezgif-3.gif");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.iplayer-crop-overview-bottom {
    aspect-ratio: 1.2 / 0.58;
    background-image: url("iplayer-overview-bottom-ux-work-cover.gif");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.iplayer-crop-research {
    aspect-ratio: 1947 / 2031;
    width: 100%;
    margin-top: 20px;
    background-color: transparent;
    background-image: url("iplayer-research-sssss.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.iplayer-crop-model {
    aspect-ratio: 1.15 / 0.95;
    margin-top: 20px;
    background-color: #ffffff;
    background-image: url("iplayer-model-group-73.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.iplayer-crop-ia {
    aspect-ratio: 1.58 / 0.6;
    background-position: 50% 62.3%;
}

.iplayer-crop-ia-final {
    aspect-ratio: 4194 / 2814;
    width: 100%;
    margin-top: 20px;
    background-color: #ffffff;
    background-image: url("iplayer-ia-final-arch.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.iplayer-crop-journey {
    aspect-ratio: 2.18 / 0.78;
    background-position: 50% 89.4%;
    box-shadow: 10px 12px 20px rgba(122, 90, 34, 0.18);
}

.iplayer-crop-journey-frame104 {
    aspect-ratio: 3840 / 2160;
    width: 100%;
    margin-top: 20px;
    background-color: #ffffff;
    background-image: url("iplayer-journey-frame-104.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.personal-practice-main {
    max-width: 1120px;
    margin-inline: auto;
    width: 100%;
    padding: 0 38px 80px;
    box-sizing: border-box;
}

body.personal-practice-page .personal-practice-main > .back-home-btn {
    margin-bottom: 30px !important;
}

.personal-practice-hero-section {
    padding: 0 38px 60px;
    max-width: 1120px;
    margin-inline: auto;
    width: 100%;
    box-sizing: border-box;
}

.personal-practice-page-title {
    font-size: 34px;
    line-height: 1.25;
    font-weight: 800;
    margin: 28px 0 10px;
    color: #111111;
}

.personal-practice-meta {
    color: #111111;
    font-size: 11px;
    font-weight: 700;
    margin: 0 0 12px;
    letter-spacing: 0.02em;
}

.pp-block-title {
    font-size: 24px;
    line-height: 1.3;
    font-weight: 800;
    color: #111111;
    margin: 0 0 20px;
}

.pp-copy {
    font-size: 13px;
    line-height: 1.75;
    font-weight: 500;
    color: #1b1b1b;
    margin: 0 0 24px;
    letter-spacing: 0.005em;
}

.pp-copy-intro {
    margin-top: 20px;
    margin-bottom: 0;
}

body.personal-practice-page .personal-practice-hero-section .pp-meta-medium {
    margin-top: calc(15% - 70px);
}

.pp-section {
    padding: 0 0 60px;
}

.pp-grid {
    display: grid;
    gap: 28px;
    width: 100%;
    align-items: stretch;
}

body.personal-practice-page .pp-grid {
    gap: 15px;
}

.pp-grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.pp-grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pp-grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.pp-img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center top;
    background-color: transparent;
    border: 0;
    outline: none;
    box-shadow: none;
    user-select: auto;
    visibility: visible !important;
    background: transparent !important;
}

.pp-grid {
    align-items: start;
    justify-items: stretch;
    place-items: start stretch;
    background-color: transparent;
    background: transparent !important;
}

.pp-grid > .pp-img,
.pp-grid > img {
    align-self: start;
    justify-self: stretch;
    background-color: transparent;
    background: transparent !important;
}

.pp-grid > *,
.pp-grid::before,
.pp-grid::after {
    background-color: transparent;
    background: transparent;
}

/* Block 1 – Osaka Kansai 3 screenshots, 1:1 lock real aspect ratios to avoid white stretch */
.pp-img.pp-img-b1-a { aspect-ratio: 1458 / 2068; }   /* 1458 × 2068  CN */
.pp-img.pp-img-b1-b { aspect-ratio: 4480 / 23262; }  /* 4480 × 23262 EN page */
.pp-img.pp-img-b1-c { aspect-ratio: 4480 / 14198; }  /* 4480 × 14198 EN product */

/* Block 2 – b2-a unchanged (1764/2925 poster), b2-b + b2-c EQUAL HEIGHT locked to 1569/2175 (certificate ratio) */
body.personal-practice-page .pp-img.pp-img-b2-a { aspect-ratio: 1764 / 2925 !important; }
body.personal-practice-page .pp-img.pp-img-b2-b,
body.personal-practice-page .pp-img.pp-img-b2-c {
    aspect-ratio: 1569 / 2175 !important;
    object-fit: contain !important;
}

/* Block 3 – Wenhui Bao newspaper 1833×2730 / Guangming Online 1839×2724 */
.pp-img.pp-img-b3-a { aspect-ratio: 1833 / 2730; }
.pp-img.pp-img-b3-b { aspect-ratio: 1839 / 2724; }

/* Block 4 – 2 independent rows, each row: column widths derived from each image's native aspect ratio
   so images fill their cells with ZERO transparent padding (aspect-ratio locked to each image's own ratio).
   Math: to keep same height H, column width W must equal H × (natW/natH).
   Therefore we set grid-template-columns using (natW/natH) as fr weights → row fills 100% + cols non-equal + row=equalHeight.
*/
body.personal-practice-page .pp-block-4 .pp-block-4-row {
    display: grid !important;
    width: 100% !important;
    gap: 15px !important;
    margin: 0 !important;
}
body.personal-practice-page .pp-block-4-row + .pp-block-4-row {
    margin-top: 15px !important;
}
/* Row 1: venue (1080×720) W/H=1.5  vs  panel (1365×1926) W/H≈0.70872274 */
body.personal-practice-page .pp-block-4-row-1 {
    grid-template-columns: 1.5fr 0.7087227414330218fr !important;
}
body.personal-practice-page .pp-img.pp-img-b4-a {
    aspect-ratio: 1080 / 720 !important;   /* 1.5:1 横图，自身比例 → 无留白 */
    object-fit: cover !important;
}
body.personal-practice-page .pp-img.pp-img-b4-b {
    aspect-ratio: 1365 / 1926 !important;  /* ≈0.7087:1 竖图，自身比例 → 无留白 */
    object-fit: cover !important;
}
/* Row 2: onsite (1242×1647) W/H≈0.75410  vs  detail (1311×1956) W/H≈0.67025 */
body.personal-practice-page .pp-block-4-row-2 {
    grid-template-columns: 0.7541007893139041fr 0.6702453987730062fr !important;
}
body.personal-practice-page .pp-img.pp-img-b4-c {
    aspect-ratio: 1242 / 1647 !important;  /* onsite 自身比例 → 无留白 */
    object-fit: cover !important;
}
body.personal-practice-page .pp-img.pp-img-b4-d {
    aspect-ratio: 1311 / 1956 !important;  /* detail 自身比例 → 无留白 */
    object-fit: cover !important;
}

/* Block 5 (after block4 / article level) – 2-col row; China Daily frames 2763×8034 & 2763×7875 (same w, near-equal h) */
body.personal-practice-page .pp-block-5-row-1 {
    display: grid !important;
    width: 100% !important;
    margin: 0 !important;
    gap: 15px !important;
    /* col ratio = natW/natH of each image → frames have equal natW (2763) so cols nearly 1:1; use W/H as fr weights. */
    grid-template-columns: 0.3439024390243902fr 0.3508507555555556fr !important;
    margin-top: 15px !important;
}
body.personal-practice-page .pp-img.pp-img-b5-a {
    aspect-ratio: 2763 / 8034 !important;
    object-fit: contain !important;
}
body.personal-practice-page .pp-img.pp-img-b5-b {
    aspect-ratio: 2763 / 7875 !important;
    object-fit: contain !important;
}

/* Block link pill button (reuses back-home-btn visual language) */
.pp-block-link {
    display: inline-flex;
    position: relative;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 14px;
    margin: -6px 0 20px;
    border: 1px solid #d7d7d1;
    border-radius: 999px;
    color: #111111;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    background: rgba(255, 255, 255, 0.55);
    transition: background-color 220ms cubic-bezier(0.22, 1, 0.36, 1),
                transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
                border-color 220ms cubic-bezier(0.22, 1, 0.36, 1);
}
.pp-block-link:hover {
    background: rgba(255, 255, 255, 0.88);
    border-color: #111111;
    transform: translateY(-1px);
    color: #111111;
}
.pp-block-link:active {
    transform: translateY(1px) scale(0.985);
}

.personal-practice-hero-section .pp-img-b0-main,
.personal-practice-hero-section .pp-hero-video,
.personal-practice-hero-section .pp-hero-video-wrap,
.personal-practice-hero-section .pp-block-title,
.personal-practice-hero-section .pp-copy-intro,
.personal-practice-hero-section .personal-practice-page-title,
.personal-practice-hero-section .personal-practice-meta {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none !important;
    visibility: visible !important;
}

.pp-hero-video-wrap {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: block;
    padding: 0;
    margin: 0;
    background: transparent;
    background-color: transparent !important;
}

.pp-hero-video {
    display: block;
    width: 100%;
    height: auto !important;
    max-width: 100%;
    max-height: none !important;
    aspect-ratio: 960 / 544;
    object-fit: contain;
    object-position: center center;
    background: transparent !important;
    background-color: transparent !important;
    border: 0;
    outline: none;
    box-shadow: none;
    visibility: visible !important;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

.pp-img.pp-hero-video,
.pp-img.pp-img-b0-main.pp-hero-video {
    background: transparent !important;
    background-color: transparent !important;
}

.pp-hero-video-controls {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translate(-50%, 10px);
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.58);
    backdrop-filter: blur(14px) saturate(180%);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
    z-index: 12;
    user-select: none;
    -webkit-user-select: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms cubic-bezier(0.22, 1, 0.36, 1),
                transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.pp-video-progress-wrap {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 78px;
    z-index: 11;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 220ms cubic-bezier(0.22, 1, 0.36, 1),
                transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.pp-hero-video-wrap.is-video-hovered .pp-hero-video-controls,
.pp-hero-video-wrap.is-video-hovered .pp-video-progress-wrap,
.pp-hero-video-wrap.is-paused .pp-hero-video-controls,
.pp-hero-video-wrap.is-paused .pp-video-progress-wrap {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.pp-hero-video-wrap.is-video-hovered .pp-video-progress-wrap,
.pp-hero-video-wrap.is-paused .pp-video-progress-wrap {
    transform: translateY(0);
}

.pp-video-progress-track {
    position: relative;
    flex: 1 1 auto;
    height: 22px;
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
}

.pp-video-progress-track::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 4px;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    transition: height 160ms ease;
}

.pp-video-progress-track:hover::before,
.pp-video-progress-track.is-dragging::before {
    height: 5px;
}

.pp-video-progress-fill {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    width: 0%;
    background: #ffffff;
    border-radius: 999px;
    pointer-events: none;
    transition: height 160ms ease;
}

.pp-video-progress-track:hover .pp-video-progress-fill,
.pp-video-progress-track.is-dragging .pp-video-progress-fill {
    height: 5px;
}

.pp-video-progress-thumb {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%) scale(0.85);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.38);
    pointer-events: none;
    transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1),
                opacity 160ms ease;
    opacity: 0;
}

.pp-video-progress-track:hover .pp-video-progress-thumb,
.pp-video-progress-track.is-dragging .pp-video-progress-thumb,
.pp-hero-video-wrap.is-paused .pp-video-progress-thumb {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.pp-video-progress-time {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1;
    padding: 4px 8px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.34);
    white-space: nowrap;
    text-align: right;
    min-width: 78px;
}

.pp-video-time-sep { opacity: 0.55; margin: 0 1px; }

.pp-video-btn {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    outline: none;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1),
                background-color 180ms cubic-bezier(0.22, 1, 0.36, 1);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1;
    white-space: nowrap;
    min-width: 92px;
}

.pp-video-btn:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-1px);
}

.pp-video-btn:active {
    transform: translateY(0) scale(0.98);
}

.pp-video-btn-label {
    display: inline-block;
    color: #ffffff;
    font-size: 12px;
    line-height: 1;
    pointer-events: none;
}

.pp-video-btn-icon {
    display: inline-block;
    width: 14px;
    height: 14px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    flex-shrink: 0;
    pointer-events: none;
}

.pp-icon-play {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M6 4.5v15l13-7.5z'/></svg>");
}

.pp-video-play.is-playing .pp-icon-play {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><rect x='6' y='5' width='4' height='14' rx='0.8'/><rect x='14' y='5' width='4' height='14' rx='0.8'/></svg>");
}

.pp-icon-sound-on {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'><polygon points='7 9 4 9 4 15 7 15 11 19 11 5 7 9' fill='white' stroke='white'/><path d='M15.5 8.5a5 5 0 0 1 0 7'/><path d='M18.5 5.5a9 9 0 0 1 0 13'/></svg>");
}

.pp-video-mute.is-muted .pp-icon-sound-on {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'><polygon points='7 9 4 9 4 15 7 15 11 19 11 5 7 9' fill='white' stroke='white'/><line x1='17' y1='9' x2='22' y2='14'/><line x1='22' y1='9' x2='17' y2='14'/></svg>");
}

.pp-video-volume {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 0 10px 0 0;
    height: 32px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    transition: background-color 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.pp-video-volume:hover {
    background: rgba(255, 255, 255, 0.12);
}

.pp-video-mute-inline {
    min-width: 32px !important;
    width: 32px;
    height: 32px;
    padding: 0 !important;
    justify-content: center !important;
    gap: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 999px 0 0 999px;
}

.pp-video-mute-inline:hover {
    background: rgba(255, 255, 255, 0.14) !important;
    transform: translateY(0) !important;
}

.pp-video-slider {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    padding: 0 10px 0 0;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    min-width: 112px;
}

.pp-video-volume-range {
    -webkit-appearance: none;
    appearance: none;
    width: 108px;
    height: 4px;
    background: transparent;
    background-image: linear-gradient(to right, #ffffff 0%, #ffffff var(--vol-fill, 0%), rgba(255,255,255,0.26) var(--vol-fill, 0%), rgba(255,255,255,0.26) 100%);
    border-radius: 999px;
    outline: none;
    cursor: pointer;
    border: 0;
    padding: 0;
    margin: 0;
    transition: height 150ms ease;
}

.pp-video-volume-range:hover {
    height: 5px;
}

.pp-video-volume-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 1px 6px rgba(0,0,0,0.35);
    cursor: pointer;
    border: 0;
    transition: transform 140ms cubic-bezier(0.22, 1, 0.36, 1);
    transform: scale(0.9);
    margin-top: 0;
}

.pp-video-volume-range:hover::-webkit-slider-thumb {
    transform: scale(1.05);
}

.pp-video-volume-range::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffffff;
    border: 0;
    box-shadow: 0 1px 6px rgba(0,0,0,0.35);
    cursor: pointer;
}

.pp-video-volume-range::-moz-range-track {
    height: 4px;
    background: transparent;
    border: 0;
}

.pp-icon-fullscreen {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'><path d='M4 9V5h4'/><path d='M20 9V5h-4'/><path d='M4 15v4h4'/><path d='M20 15v4h-4'/></svg>");
}

.pp-video-fullscreen.is-fullscreen .pp-icon-fullscreen {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'><path d='M9 5v4H5'/><path d='M15 5v4h4'/><path d='M9 19v-4H5'/><path d='M15 19v-4h4'/></svg>");
}

body.personal-practice-page .pp-hero-video-wrap:fullscreen,
body.personal-practice-page .pp-hero-video-wrap:-webkit-full-screen {
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
}

body.personal-practice-page .pp-hero-video-wrap:fullscreen video.pp-hero-video,
body.personal-practice-page .pp-hero-video-wrap:-webkit-full-screen video.pp-hero-video {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    aspect-ratio: auto !important;
    object-fit: contain;
    background: #000000;
}

/* Personal Practice 入场动效：标准与全站一致（fade 0→1，translateY 36→0）。
   — 仅保留 hero-section 内部元素「首屏强制可见」兜底（避免超大素材加载时 Observer 被阻塞导致首屏消失）。
   — block1 ~ block4 的文字 / 图 / grid 全部回归标准 scroll-enter。
*/
body.personal-practice-page .personal-practice-hero-section .scroll-enter,
body.personal-practice-page .personal-practice-hero-section .scroll-enter.is-visible {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) !important;
    transition: none !important;
    visibility: visible !important;
}

.personal-practice-frame-104 {
    display: none;
}

.cgtn-section {
    margin-bottom: 88px;
}

.cgtn-hero {
    position: relative;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 92px;
    overflow: hidden;
    border-radius: 0;
    background: linear-gradient(180deg, #2a2a2a 0%, #1e1e1e 100%);
}

.cgtn-hero-inner {
    position: relative;
    width: min(calc(100% - (var(--page-gutter) * 2)), 1120px);
    min-height: auto;
    margin: 0 auto;
    padding: 38px 40px 52px;
}

.cgtn-hero-mark {
    text-align: center;
}

.cgtn-brand-logo {
    display: block;
    width: 89px;
    height: auto;
    margin: 0 auto;
}

.cgtn-hero-copy {
    position: relative;
    z-index: 2;
    width: 560px;
    margin-top: 46px;
    margin-left: 138px;
    color: #ffffff;
}

.cgtn-hero-kicker,
.cgtn-hero-title {
    font-weight: 700;
}

.cgtn-hero-kicker {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.16;
    letter-spacing: -0.04em;
    white-space: pre-line;
    width: 600px !important;
    max-width: none !important;
}

.cgtn-hero-kicker > br,
.cgtn-hero-kicker > * + * {
    margin-top: 10px;
    display: block;
}

.cgtn-hero-kicker::after {
    content: "";
    display: block;
    height: 10px;
}

.cgtn-hero-title {
    margin-top: 10px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.16;
    letter-spacing: -0.04em;
}

.cgtn-hero-meta {
    position: absolute;
    right: 54px;
    top: calc(262px + 15%);
    z-index: 3;
    color: rgba(255, 255, 255, 0.92);
    font-size: 12px;
    line-height: 1.7;
    letter-spacing: 0.08em;
}

.cgtn-dashboard-stage {
    position: relative;
    z-index: 1;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-top: 34px;
}

.cgtn-dashboard-image {
    width: 100%;
    height: auto;
    display: block;
    background: transparent;
}

.cgtn-product-intro {
    margin-top: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
}

.cgtn-product-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.3fr);
    gap: 64px;
    align-items: start;
}

.cgtn-product-heading {
    margin-bottom: 18px;
    color: #111111;
    font-size: 20px;
    line-height: 1.16;
    letter-spacing: -0.03em;
    font-weight: 700;
}

.cgtn-product-text {
    color: #6b6b6b;
    font-size: 15px;
    line-height: 1.88;
}

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

.cgtn-goal-card {
    min-height: 172px;
    padding: 30px 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, #d5e6bc 0%, #a9ddd8 100%);
    box-shadow: 0 14px 28px rgba(79, 108, 108, 0.14);
}

.cgtn-goal-title {
    color: #2a2a2a;
    font-size: 14px;
    line-height: 1.9;
    font-weight: 700;
    text-align: center;
}

.cgtn-goal-text {
    margin-top: 14px;
    color: #5a5a5a;
    font-size: 14px;
    line-height: 1.9;
    text-align: left;
}

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

.cgtn-feature-image,
.cgtn-strategy-visual {
    width: 100%;
    border-radius: 0;
}

.cgtn-feature-image {
    display: block;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    background: transparent;
    box-shadow: none;
}

.cgtn-feature-image-driver,
.cgtn-feature-image-console,
.cgtn-feature-image-sync {
    background: transparent;
}

.cgtn-feature-title,
.cgtn-section-heading,
.cgtn-journey-title {
    font-weight: 700;
    color: #111111;
}

.cgtn-feature-title {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.cgtn-feature-text,
.cgtn-copy,
.cgtn-section-intro,
.cgtn-link-line,
.cgtn-web-list li {
    color: #4a4a4a;
    font-size: 14px;
    line-height: 1.9;
}

.cgtn-feature-text {
    margin-top: 10px;
}

.cgtn-insight-grid,
.cgtn-architecture-grid,
.cgtn-web-grid,
.cgtn-appclips-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px;
}

.cgtn-section-heading {
    margin-bottom: 28px;
    font-size: 20px;
    line-height: 1.16;
    letter-spacing: -0.03em;
}

.cgtn-section-intro {
    margin-top: -4px;
    margin-bottom: 30px;
}

.cgtn-subtitle,
.cgtn-web-en-title {
    font-weight: 700;
}

.cgtn-subtitle {
    margin-bottom: 12px;
    color: #4ed0c6;
    font-size: 16px;
    line-height: 1.5;
}

.cgtn-persona,
.cgtn-insight {
    margin-bottom: 34px;
}

.cgtn-editable-media {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
    margin: 18px 0;
}

.cgtn-editable-media-visual {
    min-height: 150px;
}

.cgtn-editable-media-copy .cgtn-copy + .cgtn-copy {
    margin-top: 10px;
}

.cgtn-editable-media-copy [contenteditable="true"] {
    outline: none;
}

.cgtn-mini-illustration {
    width: 150px;
    height: auto;
    margin: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    display: block;
    object-fit: contain;
}

.cgtn-mini-illustration-phone,
.cgtn-mini-illustration-people {
    background: transparent;
}

.cgtn-editable-analysis {
    display: grid;
    gap: 26px;
}

.cgtn-analysis-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
}

.cgtn-analysis-panel {
    padding: 24px;
    border: 0;
    background: transparent;
}

.cgtn-analysis-split > .cgtn-analysis-panel {
    border: 0;
}

.cgtn-analysis-media-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.cgtn-analysis-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.cgtn-analysis-card-image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.cgtn-analysis-card-title {
    margin: 16px 0 8px;
    color: #101010;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 700;
}

.cgtn-analysis-card-text {
    margin: 0;
    color: #4b4b46;
    font-size: 14px;
    line-height: 1.9;
    font-weight: 400;
}

.cgtn-mobile-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
}

.cgtn-mobile-showcase-label {
    margin: 0;
    color: #101010;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 700;
}

.cgtn-mobile-showcase-content {
    display: grid;
    grid-template-columns: minmax(0, 540px) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.cgtn-mobile-showcase-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    max-width: 540px;
}

.cgtn-mobile-showcase-item {
    margin: 0;
    display: block;
    overflow: hidden;
}

.cgtn-mobile-showcase-image {
    display: block;
    width: 112%;
    max-width: none;
    height: auto;
    margin-left: -6%;
    aspect-ratio: auto;
    object-fit: contain;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.cgtn-mobile-showcase-item:nth-child(3) .cgtn-mobile-showcase-image {
    width: 104%;
    margin-left: -2%;
}

.cgtn-mobile-side-figure {
    margin: 0;
}

.cgtn-mobile-side-panel {
    display: grid;
    gap: 12px;
    align-content: start;
}

.cgtn-mobile-side-label {
    margin: 0;
    color: #101010;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 700;
}

.cgtn-mobile-side-image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.cgtn-analysis-media-slot,
.cgtn-analysis-journey-cell {
    border: 1px dashed #cfcfc8;
    background: #ffffff;
    color: #8a8a82;
}

.cgtn-analysis-media-slot {
    min-height: 160px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cgtn-analysis-media-slot-wide {
    min-height: 240px;
    margin-top: 18px;
}

.cgtn-analysis-architecture-figure {
    margin: 0;
}

.cgtn-analysis-architecture-image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.cgtn-analysis-panel-horizontal {
    display: grid;
    grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.cgtn-analysis-panel-copy {
    display: grid;
    gap: 14px;
    align-content: start;
}

.cgtn-analysis-panel-copy .cgtn-subtitle,
.cgtn-analysis-panel-copy .cgtn-copy {
    margin-top: 0;
    margin-bottom: 0;
}

.cgtn-journey-chart {
    display: grid;
    gap: 10px;
    margin-top: 18px;
    overflow-x: auto;
}

.cgtn-analysis-followup-figure {
    margin: 0;
}

.cgtn-analysis-showcase-block {
    display: grid;
    gap: 18px;
}

.cgtn-analysis-showcase-title {
    margin: 0;
    color: #000000;
}

.cgtn-analysis-followup-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.cgtn-analysis-showcase-mobile-stage {
    position: relative;
    min-height: 0;
    aspect-ratio: 1024 / 720;
    padding-bottom: 20px;
    background: #ffffff;
    overflow: hidden;
}

.cgtn-analysis-showcase-mobile-item {
    position: absolute;
    margin: 0;
    width: 45.71%;
}

.cgtn-analysis-showcase-mobile-item.scroll-enter {
    opacity: 0;
    transform: translate3d(0, 30px, 0) scale(0.96);
    transition:
        opacity 700ms cubic-bezier(0.22, 1, 0.36, 1) var(--enter-delay, 0ms),
        transform 700ms cubic-bezier(0.22, 1, 0.36, 1) var(--enter-delay, 0ms);
    will-change: opacity, transform;
}

.cgtn-analysis-showcase-mobile-item.scroll-enter .cgtn-analysis-showcase-mobile-image {
    transition:
        transform 700ms cubic-bezier(0.22, 1, 0.36, 1) var(--enter-delay, 0ms),
        filter 700ms cubic-bezier(0.22, 1, 0.36, 1) var(--enter-delay, 0ms);
    filter: blur(5px);
}

.cgtn-analysis-showcase-mobile-item.scroll-enter.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.cgtn-analysis-showcase-mobile-item.scroll-enter.is-visible .cgtn-analysis-showcase-mobile-image {
    filter: blur(0);
}

.cgtn-analysis-showcase-mobile-item-1 {
    left: calc(6.8% + 10px);
    top: 5.4%;
}

.cgtn-analysis-showcase-mobile-item-2 {
    left: 31.8%;
    top: 0.6%;
    width: 45.71%;
}

.cgtn-analysis-showcase-mobile-item-3 {
    left: calc(56.5% - 10px);
    top: calc(5.3% - 20px);
}

.cgtn-analysis-showcase-mobile-item-4 {
    left: calc(6.1% + 10px);
    top: calc(33.5% + 40px);
}

.cgtn-analysis-showcase-mobile-item-5 {
    left: 31.2%;
    top: calc(34.6% + 40px);
}

.cgtn-analysis-showcase-mobile-item-6 {
    left: calc(54.9% - 10px);
    top: calc(28.8% + 40px);
    width: 45.40%;
}

.cgtn-analysis-showcase-mobile-image {
    display: block;
    width: 100%;
    height: auto;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.cgtn-analysis-car-showcase-title {
    margin: 6px 0 0;
    color: #000000;
}

.cgtn-analysis-car-showcase-figure {
    margin: 0;
}

.cgtn-analysis-car-showcase-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    background: transparent;
    border: 0;
    box-shadow: none;
}


.cgtn-journey-row {
    display: grid;
    grid-template-columns: 120px repeat(3, minmax(220px, 1fr));
    gap: 12px;
    min-width: 900px;
}

.cgtn-journey-label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 4px;
    color: #59a6ee;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.cgtn-journey-cell {
    min-height: 100px;
    padding: 18px 20px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.8;
    color: #0f1723;
    white-space: normal;
}

.cgtn-journey-cell-header {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #5db1ff;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.4;
}

.cgtn-journey-cell-primary {
    background: #dfefff;
    color: #102131;
}

.cgtn-journey-cell-secondary {
    background: #dfefff;
}

.cgtn-journey-row:not(.cgtn-journey-row-stage):not(.cgtn-journey-row-feeling) .cgtn-journey-cell {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #3d3d3d;
}

.cgtn-journey-row-feeling .cgtn-journey-cell {
    min-height: 64px;
}

.cgtn-journey-cell-empty {
    min-height: 64px;
}

.cgtn-journey-cell-feeling {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.cgtn-journey-feeling-image {
    display: block;
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.cgtn-journey-feeling-image[alt="Astonished face"] {
    width: 41px;
}

.cgtn-journey-feeling-image[alt="Excited face"] {
    width: 54px;
}

.cgtn-analysis-panel [contenteditable="true"] {
    outline: none;
}

.cgtn-strategy-visual {
    aspect-ratio: 1.55 / 1;
}

.cgtn-strategy-visual-coral { background: #de8b77; }
.cgtn-strategy-visual-dark { background: linear-gradient(180deg, #2c2c2c 0%, #141414 100%); }
.cgtn-strategy-visual-soft { background: #f0d0c7; }

.cgtn-phone-row {
    display: flex;
    gap: 22px;
    align-items: flex-end;
}

.cgtn-phone-placeholder,
.cgtn-phone-large {
    width: 140px;
    aspect-ratio: 0.52 / 1;
    border-radius: 24px;
    background: linear-gradient(180deg, #111111 0%, #2a2a2a 100%);
    box-shadow: 0 18px 26px rgba(0, 0, 0, 0.16);
    position: relative;
}

.cgtn-phone-placeholder::before,
.cgtn-phone-large::before {
    content: "";
    position: absolute;
    inset: 16px 14px;
    border-radius: 14px;
    background: linear-gradient(180deg, #f7f7f7 0%, #ffffff 100%);
}

.cgtn-phone-placeholder-player::before,
.cgtn-phone-large-player::before,
.cgtn-phone-large-gold::before {
    background: linear-gradient(180deg, #c9b865 0%, #d8ca79 100%);
}

.cgtn-phone-large-info::before {
    background: linear-gradient(180deg, #d9ebff 0%, #aac7ff 100%);
}

.cgtn-architecture-subheading {
    margin-top: 32px;
    color: #000000;
}

.cgtn-car-placeholder,
.cgtn-car-screen {
    border-radius: 18px;
    background: linear-gradient(180deg, #0b0b0b 0%, #000000 100%);
    box-shadow: 0 16px 24px rgba(0, 0, 0, 0.16);
}

.cgtn-car-placeholder {
    width: 100%;
    height: 156px;
}

.cgtn-flow-placeholder {
    width: 100%;
    height: 170px;
    margin: 22px 0 26px;
    border-radius: 12px;
    background: linear-gradient(180deg, #f2e8b1 0%, #ffffff 18%, #ffffff 100%);
    box-shadow: inset 0 0 0 1px #ece4bc;
}


.cgtn-journey-emoji {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.cgtn-showcase {
    margin-left: calc(-1 * var(--page-gutter));
    margin-right: calc(-1 * var(--page-gutter));
    padding: 68px calc(var(--page-gutter) + 24px);
    background: #e6dd99;
}

.cgtn-showcase-label,
.cgtn-showcase-title,
.cgtn-showcase-sub {
    color: #ffffff;
}

.cgtn-showcase-label {
    font-size: 20px;
    line-height: 1.16;
    font-weight: 700;
}

.cgtn-showcase-gallery .cgtn-showcase-label {
    margin: 0;
}

.cgtn-showcase .cgtn-image-stack,
.cgtn-more-projects .cgtn-image-stack {
    gap: 0;
}

.cgtn-showcase-splash {
    position: relative;
    min-height: 510px;
}

.cgtn-showcase-mascot {
    position: absolute;
    left: -34px;
    top: 64px;
    width: 220px;
    height: 340px;
    border-radius: 110px;
    background: rgba(96, 88, 54, 0.34);
    filter: blur(0.2px);
}

.cgtn-showcase-cards {
    position: absolute;
    right: 0;
    top: 24px;
    width: 760px;
    height: 420px;
}

.cgtn-showcase-card {
    position: absolute;
    width: 252px;
    height: 400px;
    border-radius: 16px;
    box-shadow: 0 30px 40px rgba(0, 0, 0, 0.14);
}

.cgtn-showcase-card-left {
    left: 74px;
    top: 90px;
    background: linear-gradient(180deg, #ffffff 0%, #eef2ff 100%);
    transform: rotate(-34deg);
}

.cgtn-showcase-card-center {
    left: 312px;
    top: 18px;
    background: linear-gradient(180deg, #94655d 0%, #7f5a2b 100%);
    transform: rotate(-12deg);
}

.cgtn-showcase-card-right {
    right: 0;
    top: 6px;
    background: linear-gradient(180deg, #ffffff 0%, #f2f2f2 100%);
    transform: rotate(12deg);
}

.cgtn-showcase-copy {
    position: absolute;
    left: 0;
    bottom: 34px;
}

.cgtn-showcase-title {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.16;
    letter-spacing: -0.04em;
    font-weight: 700;
}

.cgtn-showcase-sub {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.88;
}

.cgtn-image-panel-showcase {
    background: transparent;
}

.cgtn-showcase-image-crop-top {
    margin-top: -14%;
}

.cgtn-section-image-crop-top {
    margin-top: -31.5%;
}

.cgtn-phone-showcase {
    display: flex;
    justify-content: space-between;
    gap: 22px;
    margin-top: 44px;
}

.cgtn-phone-large {
    width: 182px;
}

.cgtn-car-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 38px;
}

.cgtn-car-screen {
    height: 172px;
}

.cgtn-web-copy {
    max-width: 420px;
}

.cgtn-gold-subtitle,
.cgtn-web-en-title {
    color: #c5b15e;
}

.cgtn-web-en-title {
    margin-bottom: 20px;
    font-size: 36px;
    line-height: 1.35;
}

.cgtn-web-list {
    padding-left: 22px;
    margin: 18px 0 20px;
}

.cgtn-link-line a {
    color: #4b68d8;
    text-decoration: none;
}

.cgtn-web-panels {
    display: grid;
    grid-template-columns: 0.75fr 1fr 1fr;
    gap: 18px;
    align-items: end;
}

.cgtn-web-panel {
    aspect-ratio: 0.6 / 1;
    border-radius: 8px;
    background: linear-gradient(180deg, #9fc0ff 0%, #ffffff 26%, #ffffff 100%);
    box-shadow: inset 0 0 0 1px #d5def3;
}

.cgtn-web-panel-tall {
    aspect-ratio: 0.42 / 1;
    background: linear-gradient(180deg, #7f91ae 0%, #ffffff 18%, #ffffff 100%);
}

.cgtn-widget-group {
    display: grid;
    grid-template-columns: 1.15fr 1.05fr;
    gap: 16px;
    align-items: start;
}

.cgtn-widget-large,
.cgtn-widget-medium,
.cgtn-widget-small,
.cgtn-zero-banner {
    border-radius: 14px;
    box-shadow: 0 14px 22px rgba(0, 0, 0, 0.1);
}

.cgtn-widget-large {
    height: 168px;
    background: linear-gradient(180deg, #6290ff 0%, #3b63d0 100%);
}

.cgtn-widget-medium {
    height: 206px;
    background: linear-gradient(180deg, #6db6ec 0%, #6290ff 100%);
}

.cgtn-widget-small {
    width: 130px;
    height: 110px;
    margin-top: 14px;
    background: linear-gradient(180deg, #6db6ec 0%, #6290ff 100%);
}

.cgtn-zero-banner {
    width: 100%;
    height: 430px;
    margin-top: 22px;
    background: linear-gradient(180deg, #496ce0 0%, #3d53ae 12%, rgba(0, 0, 0, 0.45) 13%, rgba(0, 0, 0, 0.45) 100%), linear-gradient(135deg, #4f4f4f 0%, #292929 100%);
}

.portfolio-section {
    margin-bottom: 52px;
}

.portfolio-page-title {
    font-size: 28px;
    line-height: 1.05;
    font-weight: 700;
    margin-bottom: 34px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 20px;
}

.portfolio-card img {
    width: 100%;
    aspect-ratio: 1.22 / 1;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    background: #ecece8;
}

.portfolio-card-image-sine-wave {
    object-fit: cover !important;
    background: #ecece8 !important;
}

.portfolio-card-image-iplayer {
    object-fit: contain;
    background: #ffffff;
}

.portfolio-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
    pointer-events: auto;
    cursor: pointer;
}

.portfolio-card-link:hover .portfolio-card-title {
    opacity: 0.82;
}

.portfolio-card-title {
    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;
    margin-top: 12px;
}

.portfolio-bottom {
    border-top: 1px solid #e1e1dc;
    padding-top: 28px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 24px 72px;
}

.portfolio-bottom-column {
    min-width: 0;
}

.portfolio-bottom-title {
    font-size: 12px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 12px;
}

.portfolio-bottom-text,
.portfolio-contact-link {
    font-size: 11px;
    line-height: 1.45;
    color: #707070;
}

.portfolio-bottom-text {
    max-width: 430px;
}

.portfolio-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.portfolio-contact-link {
    text-decoration: none;
    margin-bottom: 5px;
}

.portfolio-contact-link:last-child {
    margin-bottom: 0;
}

.portfolio-contact-link:hover {
    color: #111111;
}

/* Sine Wave Page */
.sine-wave-page {
    background: #edeef8;
}

.sine-wave-main {
    width: min(calc(100% - (var(--page-gutter) * 2)), 1180px);
    margin: 0 auto;
    padding-top: 54px;
    padding-bottom: 84px;
}

.sine-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 52px;
    align-items: center;
    margin-bottom: 52px;
}

.sine-hero-media {
    position: relative;
    min-height: 380px;
}

.sine-device {
    margin: 0;
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 30px 50px rgba(35, 45, 89, 0.12);
}

.sine-device img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sine-device-desktop {
    width: min(100%, 520px);
    aspect-ratio: 1.16 / 1;
}

.sine-device-desktop {
    overflow: visible;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    aspect-ratio: auto;
}

.sine-device-desktop img {
    height: auto;
    object-fit: contain;
}

.sine-device-mobile {
    position: absolute;
    right: -12px;
    bottom: -66px;
    width: min(80.6%, 416px);
    overflow: visible;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    aspect-ratio: auto;
}

.sine-device-mobile img {
    height: auto;
    object-fit: contain;
}

.sine-kicker {
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fb4a96;
    margin-bottom: 16px;
}

.sine-page-title {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.16;
    font-weight: 700;
    letter-spacing: -0.04em;
    max-width: 620px;
    margin-bottom: 20px;
}

.sine-role {
    font-size: 12px;
    line-height: 1.7;
    font-weight: 700;
    color: #101536;
    margin-bottom: 20px;
}

.sine-intro {
    font-size: 15px;
    line-height: 1.88;
    color: #55607f;
    max-width: 560px;
    margin-bottom: 18px;
}

.sine-intro:last-child {
    margin-bottom: 0;
}

.sine-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 64px;
}

.sine-section {
    margin-bottom: 76px;
}

.sine-section-copy {
    max-width: 760px;
}

.sine-section-title {
    font-size: 24px;
    line-height: 1.16;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.sine-section-intro,
.sine-summary-text,
.sine-plan-text,
.sine-output-text,
.sine-issue-text,
.sine-persona-need,
.sine-figure-caption {
    font-size: 14px;
    line-height: 1.9;
    color: #5a6583;
}

.sine-bullet-list,
.sine-number-list {
    padding-left: 20px;
    max-width: 760px;
}

.sine-bullet-list li,
.sine-number-list li {
    font-size: 14px;
    line-height: 1.92;
    color: #4e5773;
    margin-bottom: 10px;
}

.sine-bullet-list li:last-child,
.sine-number-list li:last-child {
    margin-bottom: 0;
}

.sine-problem-stage {
    position: relative;
    min-height: 960px;
    margin-top: 28px;
}

.sine-problem-stage > * {
    transform: translateY(160px);
}

.sine-problem-arrows {
    display: none;
}

.sine-problem-figure {
    width: min(100%, 580px);
    margin: 0 auto;
    transform: translateY(260px);
    position: relative;
    z-index: 1;
}

.sine-problem-figure img,
.sine-strategy-figure img,
.sine-gallery-card img {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.7);
}

.sine-problem-figure img {
    height: auto;
    object-fit: contain;
    aspect-ratio: auto;
}

.sine-figure-caption {
    text-align: center;
    margin-top: 12px;
}

.sine-issue-card {
    position: absolute;
    width: min(100%, 320px);
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    z-index: 3;
}

.sine-issue-left {
    left: 22px;
    top: 486px;
}

.sine-issue-top {
    right: 82px;
    top: -114px;
}

html[lang="en"] .sine-issue-top {
    width: min(100%, 420px);
    right: 18px;
    top: -178px;
}

.sine-issue-right {
    right: 10px;
    top: 486px;
}

.sine-issue-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 8px 14px 8px 12px;
    margin-bottom: 18px;
    border: 1px solid rgba(23, 36, 79, 0.1);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(243, 246, 255, 0.82) 100%);
    color: #17244f;
    box-shadow: 0 6px 14px rgba(23, 36, 79, 0.07);
    backdrop-filter: blur(10px);
    font-size: 18px;
    line-height: 1.15;
    font-weight: 650;
    letter-spacing: -0.015em;
    white-space: normal;
    transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.sine-issue-tag::before {
    content: "";
    width: 6px;
    height: 6px;
    margin-right: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff6da3 0%, #ff8bb7 100%);
    box-shadow: 0 0 0 4px rgba(255, 109, 163, 0.1);
    flex-shrink: 0;
}

.sine-issue-card:hover .sine-issue-tag {
    transform: translateY(-2px);
    border-color: rgba(23, 36, 79, 0.18);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(234, 240, 255, 0.96) 100%);
    color: #13214a;
    box-shadow: 0 10px 20px rgba(23, 36, 79, 0.12);
}

.sine-issue-title,
.sine-summary-title,
.sine-output-title {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 700;
    color: #ff5f95;
    margin-bottom: 10px;
}

.sine-issue-text {
    color: #6d7488;
    font-size: 14px;
    line-height: 1.95;
    max-width: 100%;
}

.sine-persona-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 34px;
    margin-top: 28px;
}

.sine-persona-card,
.sine-summary-card {
    min-width: 0;
}

.sine-persona-card {
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.sine-persona-illustration {
    width: 100%;
    border-radius: 0;
    background: transparent;
    display: block;
}

.sine-persona-meta {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.sine-persona-title {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 700;
    color: #fb4a96;
}

.sine-persona-stat {
    font-size: 13px;
    line-height: 1.55;
    color: #707799;
}

.sine-persona-highlight {
    padding: 18px 20px;
    border-radius: 18px;
    background: #17244f;
    font-size: 15px;
    line-height: 1.82;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 14px;
}

.sine-summary-card {
    padding-left: 126px;
}

.sine-summary-title {
    color: #111111;
}

.sine-strategy-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 340px;
    gap: 38px;
    align-items: start;
}

.sine-strategy-figure {
    margin: 28px 0 0;
}

.sine-strategy-figure img {
    aspect-ratio: 1.66 / 1;
}

.sine-plan-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sine-plan-card {
    padding: 0;
}

.sine-plan-pill {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 34px;
    padding: 0 16px;
    border-radius: 999px;
    background: #17244f;
    color: #ffffff;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 12px;
}

.sine-phase-board {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-top: 24px;
    border: 1px solid #73adfa;
    background: #eef4ff;
    overflow: hidden;
}

.sine-phase-column {
    padding: 10px 10px 16px;
    min-height: 270px;
    border-right: 1px solid #73adfa;
}

.sine-phase-column:last-child {
    border-right: 0;
}

.sine-phase-column:nth-child(1),
.sine-phase-column:nth-child(4) {
    background: rgba(247, 244, 242, 0.92);
}

.sine-phase-column:nth-child(2) {
    background: rgba(245, 236, 246, 0.86);
}

.sine-phase-column:nth-child(3) {
    background: rgba(234, 239, 250, 0.9);
}

.sine-phase-title {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    margin: 0 4px 12px;
    padding: 0 14px;
    border-radius: 999px;
    background: #1d73ef;
    color: #ffffff;
    font-size: 12px;
    line-height: 1.1;
    font-weight: 700;
    text-align: center;
}

.sine-phase-track {
    display: grid;
    grid-template-rows: repeat(5, minmax(30px, auto));
    gap: 8px;
    align-content: start;
}

.sine-phase-task {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 22px;
    padding: 6px 12px;
    border: 1px solid #96c4ff;
    border-radius: 999px;
    background: rgba(209, 226, 246, 0.92);
    color: #7f90ab;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 600;
    text-align: center;
    box-sizing: border-box;
}

.sine-phase-row-1 { grid-row: 1; }
.sine-phase-row-2 { grid-row: 2; }
.sine-phase-row-3 { grid-row: 3; }
.sine-phase-row-4 { grid-row: 4; }
.sine-phase-row-5 { grid-row: 5; }

.sine-phase-wide {
    width: 100%;
}

.sine-phase-mid {
    width: 82%;
    justify-self: center;
}

.sine-phase-narrow {
    width: 68%;
    justify-self: center;
}

.sine-phase-short {
    width: 54%;
    justify-self: center;
}

.sine-phase-right {
    width: 44%;
    justify-self: end;
}

.sine-phase-column-ux .sine-phase-track {
    grid-template-rows: repeat(5, minmax(44px, auto));
    gap: 10px;
}

.sine-phase-column-ux .sine-phase-task {
    min-height: 46px;
    padding: 8px 18px;
    font-size: 12px;
}

.sine-phase-column-ux .sine-phase-row-1 {
    width: 74%;
    justify-self: start;
}

.sine-phase-column-ux .sine-phase-row-2 {
    width: 66%;
    justify-self: center;
}

.sine-phase-column-ux .sine-phase-row-3 {
    width: 88%;
    justify-self: start;
}

.sine-phase-column-ux .sine-phase-row-4 {
    width: 76%;
    justify-self: center;
}

.sine-phase-column-ux .sine-phase-row-5 {
    width: 100%;
    justify-self: end;
}

.sine-ia-board {
    margin-top: 24px;
    padding: 0;
    border: 0;
    background: transparent;
}

.sine-ia-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    filter: none;
    object-fit: contain;
}

.sine-ia-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.sine-ia-node {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #7cb5ff;
    color: #ffffff;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
    min-width: 140px;
}

.sine-gallery-group {
    margin-top: 24px;
}

.sine-gallery-group + .sine-gallery-group {
    margin-top: 30px;
}

.sine-gallery-group-title {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    color: #1c2855;
}

.sine-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 16px;
}

.sine-gallery-card {
    margin: 0;
}

.sine-gallery-card img {
    aspect-ratio: 1.42 / 1;
    object-fit: contain;
    background: transparent;
}

/* Responsive */
@media (max-width: 900px) {
    :root {
        --header-height: 71px;
    }

    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: clamp(19px, 4.8vw, 34px);
        max-width: 100%;
        line-height: 1.12;
    }
    
    .work-section {
        padding: 24px 0;
    }
    
    .work-item {
        flex-direction: column !important;
        gap: 18px;
    }
    
    .work-content {
        padding: 0;
        width: 100%;
    }

    .work-image {
        flex-basis: auto;
        width: 100%;
    }

    .work-desc {
        max-width: 100%;
    }
    
    .header {
        padding: 15px 20px;
    }

    .about-main {
        padding-top: 36px;
        padding-bottom: 56px;
    }

    .ux-work-main {
        padding-top: 36px;
        padding-bottom: 56px;
    }

    .cgtn-main {
        padding-top: 0;
        padding-bottom: 56px;
    }

    .cgtn-section {
        margin-bottom: 64px;
    }

    .cgtn-hero {
        margin-bottom: 64px;
    }

    .cgtn-hero-inner {
        min-height: auto;
        padding: 32px 24px 40px;
    }

    .cgtn-brand-logo {
        width: 74px;
    }

    .cgtn-hero-copy {
        width: min(100%, 470px);
        margin-top: 44px;
        margin-left: 0;
    }

    .cgtn-hero-kicker {
        font-size: 38px;
    }

    .cgtn-hero-title {
        font-size: 38px;
    }

    .cgtn-hero-meta {
        position: absolute;
        right: 24px;
        top: calc(262px + 15%);
        margin-top: 0;
    }

    .cgtn-dashboard-stage {
        margin-top: 28px;
    }

    .cgtn-product-intro {
        padding: 0;
    }

    .cgtn-product-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .cgtn-product-heading {
        margin-bottom: 14px;
        font-size: 20px;
    }

    .cgtn-product-text {
        font-size: 15px;
        line-height: 1.88;
    }

    .cgtn-goal-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .cgtn-goal-card {
        min-height: auto;
        padding: 24px 22px;
        border-radius: 22px;
    }

    .cgtn-goal-title {
        font-size: 14px;
    }

    .cgtn-goal-text {
        margin-top: 10px;
        font-size: 14px;
        line-height: 1.9;
    }

    .cgtn-feature-grid,
    .cgtn-insight-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cgtn-analysis-split,
    .cgtn-analysis-media-grid,
    .cgtn-analysis-journey-grid {
        grid-template-columns: 1fr;
    }

    .cgtn-mobile-showcase-content {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .cgtn-analysis-panel-horizontal {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .cgtn-mobile-showcase-gallery {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
        max-width: 420px;
    }

    .cgtn-analysis-showcase-mobile-stage {
        aspect-ratio: 1024 / 740;
    }

    .cgtn-journey-row {
        min-width: 820px;
    }

    .cgtn-feature-title {
        font-size: 16px;
    }

    .cgtn-section-heading {
        font-size: 20px;
        margin-bottom: 22px;
    }

    .cgtn-feature-text,
    .cgtn-copy,
    .cgtn-section-intro,
    .cgtn-link-line,
    .cgtn-web-list li {
        font-size: 14px;
        line-height: 1.9;
    }

    .cgtn-subtitle {
        font-size: 16px;
        line-height: 1.5;
    }

    .cgtn-editable-media {
        grid-template-columns: 120px minmax(0, 1fr);
        gap: 18px;
    }

    .cgtn-showcase {
        padding: 52px calc(var(--page-gutter) + 10px);
    }

    .about-intro,
    .about-section {
        margin-bottom: 56px;
    }

    .about-page-title {
        font-size: 38px;
        margin-bottom: 32px;
    }

    .about-contact-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .skill-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-left: 0;
    }

    .portfolio-grid {
        gap: 24px 18px;
    }

    .sine-wave-main {
        padding-top: 36px;
        padding-bottom: 56px;
    }

    .sine-hero {
        grid-template-columns: 1fr;
        gap: 34px;
        margin-bottom: 36px;
    }

    .sine-hero-media {
        min-height: 0;
        padding-bottom: 52px;
    }

    .sine-page-title {
        max-width: 100%;
    }

    .sine-meta-row {
        margin-bottom: 42px;
    }

    .sine-section {
        margin-bottom: 54px;
    }

    .sine-problem-stage {
        min-height: 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .sine-problem-stage > * {
        transform: none;
    }

    .sine-problem-arrows {
        display: none;
    }

    .sine-issue-card {
        position: static;
        width: 100%;
    }

    .sine-problem-figure {
        width: 100%;
        order: -1;
    }

    .sine-persona-grid,
    .sine-strategy-grid,
    .sine-phase-board,
    .sine-ia-board,
    .sine-gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .sine-summary-card {
        padding-left: 0;
    }

    .sine-plan-stack {
        gap: 18px;
    }

    .sine-phase-column:nth-child(2) {
        border-right: 0;
    }

    .sine-phase-column:nth-child(1),
    .sine-phase-column:nth-child(2) {
        border-bottom: 1px solid #73adfa;
    }
}

@media (max-width: 600px) {
    .nav-right {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 12px;
    }
    
    .hero-title {
        font-size: clamp(14px, 6.8vw, 24px);
        line-height: 1.15;
        letter-spacing: -0.02em;
    }

    .hero-inline-icon {
        margin: 0 0.06em;
    }

    .back-home-btn {
        margin-bottom: 28px;
    }

    .sine-top-return {
        margin-bottom: 24px;
    }

    .sine-top-return .back-home-btn {
        margin-bottom: 14px;
    }

    .sine-top-logo {
        width: min(100%, 184px);
    }

    .about-page-title {
        font-size: 30px;
    }

    .about-section-title {
        font-size: 18px;
        margin-bottom: 24px;
    }

    .skill-grid {
        grid-template-columns: 1fr;
    }

    .ux-work-main {
        padding-top: 28px;
        padding-bottom: 42px;
    }

    .cgtn-main {
        padding-top: 0;
        padding-bottom: 42px;
    }

    .cgtn-top-return {
        margin-bottom: 20px;
    }

    .cgtn-section {
        margin-bottom: 52px;
    }

    .cgtn-hero {
        margin-bottom: 52px;
    }

    .cgtn-hero-inner {
        padding: 24px 18px 32px;
    }

    .cgtn-brand-logo {
        width: 65px;
    }

    .cgtn-hero-copy {
        margin-top: 34px;
    }

    .cgtn-hero-kicker {
        font-size: 30px;
    }

    .cgtn-hero-title {
        margin-top: 14px;
        font-size: 30px;
        line-height: 1.16;
    }

    .cgtn-hero-meta {
        position: absolute;
        right: 18px;
        top: calc(262px + 15%);
        margin-top: 0;
        font-size: 12px;
        line-height: 1.6;
    }

    .cgtn-dashboard-stage {
        margin-top: 22px;
    }

    .cgtn-product-intro {
        padding: 0;
    }

    .cgtn-product-layout {
        gap: 26px;
    }

    .cgtn-product-heading {
        margin-bottom: 12px;
        font-size: 20px;
    }

    .cgtn-product-text {
        font-size: 14px;
        line-height: 1.9;
    }

    .cgtn-goal-grid {
        gap: 14px;
    }

    .cgtn-goal-card {
        padding: 18px 16px;
        border-radius: 18px;
    }

    .cgtn-goal-title {
        font-size: 14px;
    }

    .cgtn-goal-text {
        margin-top: 8px;
        font-size: 14px;
        line-height: 1.9;
    }

    .cgtn-feature-title {
        margin-top: 14px;
        font-size: 16px;
    }

    .cgtn-section-heading {
        margin-bottom: 18px;
        font-size: 20px;
    }

    .cgtn-feature-text,
    .cgtn-copy,
    .cgtn-section-intro,
    .cgtn-link-line,
    .cgtn-web-list li {
        font-size: 14px;
        line-height: 1.9;
    }

    .cgtn-subtitle {
        font-size: 16px;
        line-height: 1.5;
    }

    .cgtn-mini-illustration {
        width: 120px;
        height: 120px;
        margin: 0;
    }

    .cgtn-analysis-panel {
        padding: 18px;
    }

    .cgtn-analysis-media-slot {
        min-height: 120px;
    }

    .cgtn-analysis-media-slot-wide {
        min-height: 180px;
    }

    .cgtn-editable-media {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .cgtn-dashboard-stage {
        margin-top: 22px;
    }

    .cgtn-showcase {
        padding: 34px var(--page-gutter);
    }

    .cgtn-showcase-label {
        font-size: 20px;
    }

    .cgtn-image-stack {
        gap: 20px;
    }

    .cgtn-analysis-showcase-mobile-stage {
        aspect-ratio: 1024 / 840;
    }

    .portfolio-page-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .portfolio-bottom {
        padding-top: 24px;
    }

    .sine-page-title {
        font-size: 28px;
    }

    .sine-intro,
    .sine-section-intro,
    .sine-summary-text,
    .sine-plan-text,
    .sine-issue-text,
    .sine-persona-need,
    .sine-figure-caption,
    .sine-bullet-list li,
    .sine-number-list li {
        font-size: 13px;
    }

    .sine-persona-grid,
    .sine-phase-board,
    .sine-ia-board,
    .sine-gallery-grid {
        grid-template-columns: 1fr;
    }

    .sine-persona-card {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .sine-persona-illustration {
        width: 108px;
    }

    .sine-plan-pill {
        grid-template-columns: 72px minmax(0, 1fr);
    }

    .sine-phase-column {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid #73adfa;
    }

    .sine-phase-column:last-child {
        border-bottom: 0;
    }

    .sine-phase-track {
        grid-template-rows: none;
        gap: 10px;
    }

    .sine-phase-task,
    .sine-phase-wide,
    .sine-phase-mid,
    .sine-phase-narrow,
    .sine-phase-short,
    .sine-phase-right {
        grid-row: auto;
        width: 100%;
        justify-self: stretch;
    }

    .sine-phase-column-ux .sine-phase-row-1,
    .sine-phase-column-ux .sine-phase-row-2,
    .sine-phase-column-ux .sine-phase-row-3,
    .sine-phase-column-ux .sine-phase-row-4,
    .sine-phase-column-ux .sine-phase-row-5 {
        width: 100%;
        justify-self: stretch;
    }

    .sine-phase-title {
        font-size: 11px;
    }

    .sine-phase-task {
        font-size: 11px;
    }

    .sine-meta-row {
        font-size: 10px;
    }
}

@media (max-width: 680px) {
    .portfolio-bottom {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 540px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
