:root {
    --bg: #07111f;
    --bg-soft: #0c1625;
    --bg-deep: #030913;
    --panel: rgba(10, 19, 34, 0.72);
    --panel-strong: rgba(14, 27, 46, 0.9);
    --panel-line: rgba(165, 187, 214, 0.16);
    --line-strong: rgba(196, 223, 255, 0.28);
    --text: #f5f2ea;
    --text-muted: #9fb0c5;
    --text-soft: #7e8ea4;
    --accent: #9be7d8;
    --accent-strong: #65c8d6;
    --accent-warm: #d1c8b7;
    --shadow: 0 32px 90px rgba(0, 0, 0, 0.28);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --container: 1240px;
    --font-sans: "Manrope", "PingFang SC", "Hiragino Sans GB", sans-serif;
    --font-serif: "Cormorant Garamond", "Noto Serif SC", "Source Han Serif SC", "Times New Roman", serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--text);
    font-family: var(--font-sans);
    background:
        radial-gradient(circle at 15% 20%, rgba(108, 168, 209, 0.12), transparent 28%),
        radial-gradient(circle at 82% 12%, rgba(155, 231, 216, 0.11), transparent 22%),
        linear-gradient(180deg, #06101b 0%, #0a1321 34%, #09111d 100%);
    line-height: 1.5;
    overflow-x: hidden;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: auto;
    pointer-events: none;
    z-index: 0;
}

body::before {
    top: 14%;
    right: -18rem;
    width: 42rem;
    height: 42rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(91, 149, 210, 0.18), transparent 68%);
    filter: blur(22px);
}

body::after {
    bottom: -12rem;
    left: -8rem;
    width: 28rem;
    height: 28rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(155, 231, 216, 0.12), transparent 68%);
    filter: blur(28px);
}

a {
    color: inherit;
}

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

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

.page-shell {
    position: relative;
    z-index: 1;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin: 0 auto;
}

.section {
    position: relative;
    padding: 120px 0;
}

.eyebrow,
.card-label,
.panel-kicker {
    margin: 0 0 14px;
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.section-heading {
    display: grid;
    gap: 16px;
    margin-bottom: 48px;
}

.section-heading h2 {
    margin: 0;
    max-width: 900px;
    font-family: var(--font-serif);
    font-size: clamp(2.6rem, 5vw, 4.6rem);
    line-height: 0.95;
    letter-spacing: -0.02em;
    font-weight: 600;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 22px 0;
    transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease, padding 0.35s ease;
}

.site-header.is-scrolled {
    background: rgba(7, 15, 28, 0.72);
    border-bottom: 1px solid rgba(203, 217, 236, 0.1);
    backdrop-filter: blur(18px);
    padding: 14px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header-actions {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.brand-logo-frame {
    flex: 0 0 auto;
    width: 58px;
    height: 58px;
    padding: 4px;
    border-radius: 18px;
    border: 1px solid rgba(210, 223, 240, 0.12);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
}

.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1.06);
}

.brand-copy {
    display: grid;
    gap: 2px;
}

.brand-copy strong,
.brand-copy span {
    display: block;
}

.brand-copy strong {
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.brand-copy span {
    color: var(--text-soft);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-nav {
    display: inline-flex;
    align-items: center;
    gap: 28px;
}

.site-nav a,
.header-cta {
    text-decoration: none;
    font-size: 0.92rem;
}

.site-nav a {
    color: var(--text-muted);
    transition: color 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--text);
}

.site-nav a.is-active {
    color: var(--accent);
    position: relative;
}

.site-nav a.is-active::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--accent);
    opacity: 0.7;
}

.header-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.header-cta {
    min-height: 44px;
    padding: 0 20px;
    color: var(--bg);
    background: linear-gradient(135deg, #b8f0e6, var(--accent));
    border: 1px solid rgba(155, 231, 216, 0.4);
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(155, 231, 216, 0.22), 0 1px 0 rgba(255,255,255,0.16) inset;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(155, 231, 216, 0.34);
    background: linear-gradient(135deg, #c8f5ee, #9be7d8);
}

.header-cta:hover,
.button:hover {
    transform: translateY(-1px);
}

.header-cta:focus-visible,
.button:focus-visible,
.site-nav a:focus-visible,
.brand:focus-visible {
    outline: 2px solid rgba(155, 231, 216, 0.8);
    outline-offset: 4px;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    padding: 4px;
    border-radius: 999px;
    border: 1px solid rgba(159, 176, 197, 0.16);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(14px);
}

.lang-button {
    min-width: 54px;
    min-height: 34px;
    padding: 0 12px;
    border: 0;
    border-radius: 999px;
    color: var(--text-soft);
    background: transparent;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.lang-button:hover {
    color: var(--text);
}

.lang-button.is-active {
    color: var(--bg);
    background: linear-gradient(135deg, rgba(155, 231, 216, 0.95), rgba(215, 239, 233, 0.95));
    box-shadow: 0 8px 24px rgba(155, 231, 216, 0.16);
}

.lang-button:focus-visible {
    outline: 2px solid rgba(155, 231, 216, 0.8);
    outline-offset: 2px;
}

.hero {
    min-height: 100svh;
    padding-top: 148px;
    padding-bottom: 100px;
    overflow: clip;
}

.hero-aurora,
.hero-gridline {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-aurora {
    background:
        radial-gradient(circle at 18% 24%, rgba(209, 200, 183, 0.1), transparent 26%),
        radial-gradient(circle at 88% 18%, rgba(155, 231, 216, 0.14), transparent 22%),
        radial-gradient(circle at 70% 48%, rgba(101, 200, 214, 0.12), transparent 18%);
    filter: blur(4px);
}

.hero-gridline {
    background-image:
        linear-gradient(rgba(133, 149, 170, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(133, 149, 170, 0.06) 1px, transparent 1px);
    background-size: 84px 84px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 88%);
}

.hero-layout {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    gap: 42px;
    padding-left: clamp(20px, 5vw, 60px);
}

.hero-copy {
    max-width: 760px;
    padding-right: 40px;
}

.hero-copy h1 {
    margin: 0;
    font-family: var(--font-serif);
    font-size: clamp(3.2rem, 5vw, 5rem);
    line-height: 1.15;
    letter-spacing: -0.045em;
    font-weight: 600;
    background: linear-gradient(135deg, #f5f2ea 0%, #cde8e4 55%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: pre-line;
}

.hero-lede {
    margin: 36px 0 0;
    max-width: 560px;
    color: var(--text-muted);
    font-size: clamp(1.05rem, 2vw, 1.22rem);
    line-height: 1.65;
}

.hero-statement {
    margin: 24px 0 0;
    max-width: 540px;
    padding-left: 18px;
    border-left: 1px solid rgba(155, 231, 216, 0.3);
    color: var(--text);
    font-size: 0.98rem;
    line-height: 1.7;
}

.hero-statement:empty {
    display: none;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 40px;
}

.hero-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
    margin-top: 5vh;
}

.hero-proof-card {
    min-height: 132px;
    padding: 18px 18px 20px;
    border: 1px solid rgba(159, 176, 197, 0.12);
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
        radial-gradient(circle at top right, rgba(155, 231, 216, 0.08), transparent 34%);
    backdrop-filter: blur(16px);
    will-change: transform;
    transform: translateZ(0);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.12);
    transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.hero-proof-card:hover {
    border-color: rgba(155, 231, 216, 0.3);
    transform: translateY(-3px) translateZ(0);
    box-shadow: 0 12px 28px rgba(0,0,0,0.2), inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.hero-proof-label {
    margin: 0 0 8px;
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-proof-copy {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.94rem;
    line-height: 1.55;
}

.button {
    min-height: 54px;
    padding: 0 26px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button-primary {
    color: #07111f;
    background: linear-gradient(135deg, #b8f0e6 0%, var(--accent) 50%, #65c8d6 100%);
    border: 1px solid rgba(155, 231, 216, 0.45);
    box-shadow: 0 4px 16px rgba(155, 231, 216, 0.22), 0 1px 0 rgba(255,255,255,0.18) inset;
}

.button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(155, 231, 216, 0.36), 0 1px 0 rgba(255,255,255,0.22) inset;
    background: linear-gradient(135deg, #c8f5ee 0%, #9be7d8 50%, #7ad8e4 100%);
}

.button-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(155, 231, 216, 0.18);
}

.button-secondary {
    color: var(--text);
    border: 1px solid rgba(159, 176, 197, 0.28);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
}

.button-secondary:hover {
    border-color: rgba(155, 231, 216, 0.42);
    background: rgba(155, 231, 216, 0.07);
    transform: translateY(-2px);
}

.button-secondary:active {
    transform: translateY(0);
}

.metric-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin: 42px 0 0;
    padding: 0;
    list-style: none;
}

.metric-row li {
    min-width: 160px;
    padding: 22px 24px;
    border: 1px solid rgba(159, 176, 197, 0.14);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
    backdrop-filter: blur(16px);
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.metric-row li:hover {
    border-color: rgba(155, 231, 216, 0.32);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}

.metric-value {
    display: block;
    margin-bottom: 6px;
    font-family: var(--font-serif);
    font-size: clamp(3rem, 5vw, 4.2rem);
    line-height: 0.9;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #f5f2ea 30%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-label {
    color: var(--text-soft);
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero {
    position: relative;
    padding: clamp(60px, 12vh, 120px) 0 clamp(80px, 15vh, 160px);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: 
        linear-gradient(90deg, #07111f 0%, rgba(7, 17, 31, 0.85) 45%, rgba(7, 17, 31, 0) 75%),
        radial-gradient(ellipse at 50% 100%, rgba(7, 17, 31, 0.7) 0%, transparent 60%),
        url('images/hero_bg.png');
    background-size: auto, auto, cover;
    background-position: center, bottom, center right;
    background-repeat: no-repeat;
}

.hero-stage {
    --pointer-shift-x: 0px;
    --pointer-shift-y: 0px;
    position: relative;
    min-height: 680px;
    display: grid;
    place-items: center;
}

.stage-image-wrap {
    position: relative;
    width: min(100%, 620px);
    aspect-ratio: 0.88;
    border-radius: 44px;
    overflow: hidden;
    border: 1px solid rgba(155, 231, 216, 0.18);
    background: rgba(7, 14, 25, 0.65);
    box-shadow:
        var(--shadow),
        0 0 0 1px rgba(155, 231, 216, 0.07),
        0 32px 80px rgba(101, 200, 214, 0.12);
}

.stage-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(155, 231, 216, 0.18), transparent 55%),
        radial-gradient(ellipse at 75% 80%, rgba(101, 200, 214, 0.14), transparent 50%),
        linear-gradient(180deg, rgba(7,17,31,0.08) 0%, rgba(7,17,31,0.32) 100%);
    pointer-events: none;
    z-index: 1;
}

.stage-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.08) brightness(0.92) contrast(1.04);
    transform: scale(1.02);
}

.stage-screen,
.stage-glow {
    position: absolute;
    inset: 0;
}

.stage-screen {
    background:
        linear-gradient(180deg, rgba(5, 10, 18, 0.06), rgba(5, 10, 18, 0.55)),
        linear-gradient(130deg, rgba(155, 231, 216, 0.04), transparent 44%);
}

.stage-glow {
    inset: auto 6% 8% auto;
    width: 56%;
    height: 56%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(155, 231, 216, 0.22), transparent 68%);
    filter: blur(18px);
    animation: pulseGlow 6s ease-in-out infinite alternate;
}

.floating-card {
    position: absolute;
    color: var(--text);
    border: 1px solid rgba(210, 223, 240, 0.12);
    background: linear-gradient(180deg, rgba(17, 27, 44, 0.78), rgba(10, 18, 31, 0.7));
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
    transform: translate3d(var(--pointer-shift-x), var(--pointer-shift-y), 0);
}

.card-signal {
    top: 8%;
    left: -4%;
    width: min(280px, 48%);
    padding: 22px;
    border-radius: 24px;
}

.signal-stack {
    display: grid;
    gap: 12px;
}

.signal-stack div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(159, 176, 197, 0.12);
}

.signal-stack div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.signal-name,
.card-copy {
    color: var(--text-muted);
}

.signal-value {
    font-weight: 700;
}

.card-report {
    right: -3%;
    bottom: 10%;
    width: min(310px, 48%);
    padding: 24px;
    border-radius: 28px;
}

.card-report h2 {
    margin: 0 0 10px;
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 600;
}

.report-bars {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 96px;
    margin-top: 18px;
}

.report-bars span {
    flex: 1;
    border-radius: 999px 999px 12px 12px;
    background: linear-gradient(180deg, rgba(155, 231, 216, 0.95), rgba(101, 200, 214, 0.22));
    height: var(--bar);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.card-note {
    left: 12%;
    bottom: 4%;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 18px;
    border-radius: 18px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.ticker {
    overflow: hidden;
    border-top: 1px solid rgba(159, 176, 197, 0.08);
    border-bottom: 1px solid rgba(159, 176, 197, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.ticker-track {
    display: flex;
    gap: 42px;
    width: max-content;
    padding: 16px 0;
    animation: tickerMove 26s linear infinite;
}

.ticker-track span {
    position: relative;
    padding-left: 18px;
    color: var(--text-soft);
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    text-transform: uppercase;
}

.ticker-track span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(155, 231, 216, 0.65);
    transform: translateY(-50%);
}

.section-brief {
    padding-top: 120px;
    padding-bottom: 88px;
}

.brief-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 26px;
    align-items: stretch;
}

.brief-intro {
    padding: 42px;
    border: 1px solid rgba(159, 176, 197, 0.12);
    border-radius: 34px;
    background:
        linear-gradient(145deg, rgba(155, 231, 216, 0.1), rgba(255, 255, 255, 0.02) 42%),
        linear-gradient(180deg, rgba(8, 18, 31, 0.96), rgba(7, 15, 26, 0.92));
    box-shadow: var(--shadow);
}

.brief-intro h2 {
    margin: 0;
    max-width: 820px;
    font-family: var(--font-serif);
    font-size: clamp(2.6rem, 5vw, 4.4rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
    font-weight: 600;
}

.brief-copy {
    max-width: 640px;
    margin: 22px 0 0;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.brief-stack {
    display: grid;
    gap: 16px;
}

.brief-card {
    padding: 28px;
    border: 1px solid rgba(159, 176, 197, 0.12);
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
    backdrop-filter: blur(16px);
    will-change: transform;
    transform: translateZ(0);
    box-shadow: var(--shadow), inset 0 1px 1px rgba(255, 255, 255, 0.12);
    transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.brief-card h3 {
    margin: 0 0 10px;
    font-size: 1.36rem;
    line-height: 1.15;
}

.brief-card p:last-child {
    margin: 0;
    color: var(--text-muted);
}

.brief-card:hover {
    border-color: rgba(155, 231, 216, 0.28);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.22);
}

.brief-card-strong {
    background:
        radial-gradient(circle at top right, rgba(209, 200, 183, 0.08), transparent 30%),
        linear-gradient(160deg, rgba(18, 30, 47, 0.96), rgba(7, 14, 25, 0.9));
}

.section-split {
    padding-top: 160px;
}

.section-identity {
    padding-top: 120px;
    padding-bottom: 112px;
}

.identity-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 24px;
    align-items: stretch;
}

.identity-copy,
.brand-panel {
    border: 1px solid rgba(159, 176, 197, 0.12);
    box-shadow: var(--shadow);
}

.identity-copy {
    padding: 36px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top left, rgba(155, 231, 216, 0.08), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018));
    backdrop-filter: blur(16px);
}

.identity-copy h2 {
    margin: 0;
    max-width: 820px;
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: 0.94;
    letter-spacing: -0.03em;
    font-weight: 600;
}

.identity-lede {
    max-width: 680px;
    margin: 24px 0 0;
    color: var(--text-muted);
    font-size: 1.08rem;
}

.identity-points {
    display: grid;
    gap: 14px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.identity-points li {
    position: relative;
    padding-left: 18px;
    color: var(--text);
}

.identity-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(155, 231, 216, 0.78);
}

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

.brand-panel {
    display: grid;
    align-content: start;
    gap: 16px;
    padding: 34px;
    border-radius: 30px;
    color: #172033;
    background:
        radial-gradient(circle at top right, rgba(23, 32, 51, 0.08), transparent 30%),
        linear-gradient(180deg, rgba(245, 242, 234, 0.98), rgba(232, 226, 214, 0.92));
}

.brand-panel-logo {
    width: min(100%, 280px);
    height: auto;
}

.brand-panel-tag {
    margin: 0;
    color: rgba(23, 32, 51, 0.56);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.brand-panel-copy {
    margin: 0;
    max-width: 360px;
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 0.98;
}

.brand-pillar-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.brand-pillar-list span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(23, 32, 51, 0.1);
    background: rgba(255, 255, 255, 0.54);
    color: rgba(23, 32, 51, 0.86);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    gap: 26px;
}

.editorial-panel,
.method-card,
.bento-card,
.science-card,
.model-card,
.model-core,
.partner-card,
.cta-panel {
    border: 1px solid rgba(159, 176, 197, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow);
}

.editorial-panel {
    min-height: 100%;
    padding: 34px;
    border-radius: var(--radius-xl);
}

.editorial-quote {
    margin: 0;
    color: var(--text);
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1;
}

.editorial-quote em {
    color: var(--accent-warm);
    font-style: italic;
}

.method-column {
    display: grid;
    gap: 18px;
}

.method-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    padding: 24px;
    border-radius: 24px;
    transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.method-card:hover {
    border-color: rgba(209, 200, 183, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}

.method-index {
    font-family: var(--font-serif);
    font-size: 2rem;
    line-height: 1;
    color: var(--accent-warm);
}

.method-card h3,
.bento-card h3,
.science-card h3,
.model-card h3,
.model-core h3,
.partner-card h3,
.cta-panel h2 {
    margin: 0 0 10px;
    font-size: 1.4rem;
    line-height: 1.15;
}

.method-card p,
.bento-card p,
.science-card p,
.partner-card p,
.footer-copy,
.footer-note,
.cta-panel p {
    margin: 0;
    color: var(--text-muted);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
}

.bento-card {
    min-height: 240px;
    padding: 28px;
    border-radius: 26px;
    grid-column: span 4;
    transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.bento-card:hover {
    border-color: rgba(155, 231, 216, 0.28);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}

.bento-card-feature {
    grid-column: span 5;
    background:
        linear-gradient(155deg, rgba(155, 231, 216, 0.12), rgba(255, 255, 255, 0.02)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
}

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

.science-card,
.partner-card {
    padding: 28px;
    border-radius: 26px;
    will-change: transform;
    transform: translateZ(0);
    transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.science-card:hover,
.partner-card:hover {
    border-color: rgba(155, 231, 216, 0.28);
    transform: translateY(-4px) translateZ(0);
    box-shadow: 0 16px 40px rgba(0,0,0,0.22);
}

.science-card:nth-child(2) {
    border-color: rgba(155, 231, 216, 0.35);
    transform: translateY(-8px) translateZ(0);
    box-shadow: 0 8px 32px rgba(101, 200, 214, 0.08);
}

.science-card:nth-child(2):hover {
    transform: translateY(-12px) translateZ(0);
    box-shadow: 0 16px 40px rgba(101, 200, 214, 0.15);
}

.science-card ul,
.model-card ul,
.partner-points,
.cta-checklist {
    display: grid;
    gap: 12px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.science-card li,
.model-card li,
.partner-points li,
.cta-checklist li {
    position: relative;
    padding-left: 18px;
    color: var(--text-muted);
}

.model-card li::before,
.partner-points li::before,
.cta-checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.64em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(155, 231, 216, 0.72);
}

.science-card li::before {
    content: "◆";
    position: absolute;
    left: 0;
    top: 0.15em;
    font-size: 0.8em;
    color: var(--accent);
    opacity: 0.85;
}

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

.model-card,
.model-core {
    padding: 28px;
    border-radius: 28px;
}

.model-core {
    display: grid;
    align-content: center;
    background:
        radial-gradient(circle at top, rgba(155, 231, 216, 0.11), transparent 42%),
        linear-gradient(180deg, rgba(19, 32, 51, 0.92), rgba(10, 18, 31, 0.85));
}

.model-core-copy {
    margin: 0;
    color: var(--text-muted);
}

.core-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.core-grid span {
    padding: 14px 16px;
    border: 1px solid rgba(159, 176, 197, 0.12);
    border-radius: 16px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
}

.surface-rail {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.surface-rail span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(159, 176, 197, 0.12);
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-partnership {
    padding-bottom: 140px;
    background:
        radial-gradient(circle at 50% 0%, rgba(155, 231, 216, 0.08), transparent 30%),
        linear-gradient(180deg, rgba(3, 9, 19, 0), rgba(3, 9, 19, 0.54) 60%, rgba(3, 9, 19, 0.86) 100%);
}

body[data-page="company"] {
    --bg: #eef3f6;
    --bg-soft: #e4ebf0;
    --bg-deep: #d8e0e7;
    --text: #13212e;
    --text-muted: #5f7384;
    --text-soft: #8698a8;
    --accent: #00b9c9;
    --accent-strong: #00889d;
    --accent-warm: #93a8b6;
    background:
        radial-gradient(circle at 14% 16%, rgba(0, 185, 201, 0.1), transparent 22%),
        radial-gradient(circle at 86% 14%, rgba(255, 255, 255, 0.7), transparent 20%),
        linear-gradient(180deg, #f4f7f9 0%, #edf2f5 42%, #e6edf2 100%);
}

body[data-page="company"]::before {
    background: radial-gradient(circle, rgba(0, 185, 201, 0.08), transparent 68%);
    filter: blur(28px);
}

body[data-page="company"]::after {
    background: radial-gradient(circle, rgba(147, 168, 182, 0.1), transparent 68%);
    filter: blur(36px);
}

body[data-page="company"] .site-header.is-scrolled {
    background: rgba(244, 247, 249, 0.88);
    border-bottom: 1px solid rgba(19, 33, 46, 0.08);
}

body[data-page="company"] .brand-logo-frame,
body[data-page="company"] .footer-logo-frame {
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(19, 33, 46, 0.08);
}

body[data-page="company"] .brand-copy span,
body[data-page="company"] .site-nav a,
body[data-page="company"] .footer-links a {
    color: var(--text-muted);
}

body[data-page="company"] .brand-copy strong,
body[data-page="company"] .company-hero-copy h1,
body[data-page="company"] .company-overview-card h3,
body[data-page="company"] .company-note-card h3,
body[data-page="company"] .company-step h3,
body[data-page="company"] .company-stage-panel strong,
body[data-page="company"] .company-cta h2 {
    font-family: var(--font-sans);
    letter-spacing: -0.03em;
}

body[data-page="company"] .company-hero-copy h1 {
    font-weight: 800;
    line-height: 0.9;
}

body[data-page="company"] .company-cta h2,
body[data-page="company"] .company-overview-card h3,
body[data-page="company"] .company-note-card h3,
body[data-page="company"] .company-step h3 {
    font-weight: 700;
}

body[data-page="company"] .header-cta,
body[data-page="company"] .button-primary {
    color: #f4f7f9;
    background: linear-gradient(135deg, #00889d, #00b9c9);
    box-shadow: 0 16px 34px rgba(0, 136, 157, 0.14);
}

body[data-page="company"] .button-secondary {
    border-color: rgba(19, 33, 46, 0.12);
    background: rgba(255, 255, 255, 0.66);
}

body[data-page="company"] .site-footer {
    border-top-color: rgba(19, 33, 46, 0.08);
}

body[data-page="company"] .footer-note,
body[data-page="company"] .footer-copy {
    color: var(--text-muted);
}

body[data-page="institute"] {
    --bg: #f4efe6;
    --bg-soft: #ece6dc;
    --bg-deep: #dfd8cb;
    --panel: rgba(255, 255, 255, 0.72);
    --panel-strong: rgba(255, 255, 255, 0.92);
    --panel-line: rgba(23, 32, 51, 0.12);
    --line-strong: rgba(23, 32, 51, 0.2);
    --text: #172033;
    --text-muted: #536171;
    --text-soft: #7b8896;
    --accent: #31546d;
    --accent-strong: #28465b;
    --accent-warm: #8f7f69;
    background:
        radial-gradient(circle at 16% 16%, rgba(49, 84, 109, 0.08), transparent 26%),
        radial-gradient(circle at 82% 12%, rgba(143, 127, 105, 0.09), transparent 22%),
        linear-gradient(180deg, #f5f0e7 0%, #f1ece2 44%, #ebe5db 100%);
}

body[data-page="institute"]::before {
    background: radial-gradient(circle, rgba(49, 84, 109, 0.08), transparent 68%);
    filter: blur(28px);
}

body[data-page="institute"]::after {
    background: radial-gradient(circle, rgba(143, 127, 105, 0.08), transparent 68%);
    filter: blur(34px);
}

body[data-page="institute"] .site-header.is-scrolled {
    background: rgba(245, 240, 231, 0.84);
    border-bottom: 1px solid rgba(23, 32, 51, 0.08);
}

body[data-page="institute"] .footer-links a {
    color: var(--text-muted);
}

body[data-page="institute"] .footer-links a:hover,
body[data-page="institute"] .footer-links a:focus-visible {
    color: var(--text);
}

body[data-page="institute"] .footer-logo-frame,
body[data-page="institute"] .brand-logo-frame {
    background: rgba(255, 255, 255, 0.58);
    border-color: rgba(23, 32, 51, 0.08);
}

body[data-page="institute"] .header-cta,
body[data-page="institute"] .button-primary {
    color: #f5f0e7;
    background: linear-gradient(135deg, #28465b, #3a627c);
    box-shadow: 0 14px 30px rgba(40, 70, 91, 0.16);
}

body[data-page="institute"] .button-secondary {
    border-color: rgba(23, 32, 51, 0.12);
    background: rgba(255, 255, 255, 0.5);
}

body[data-page="institute"] .site-footer {
    border-top-color: rgba(23, 32, 51, 0.08);
}

body[data-page="institute"] .footer-note,
body[data-page="institute"] .footer-copy {
    color: var(--text-muted);
}

.company-hero {
    min-height: auto;
    padding-top: 156px;
    padding-bottom: 92px;
}

.company-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
    gap: 34px;
    align-items: stretch;
}

.company-hero-copy {
    max-width: 640px;
}

.company-hero-copy h1 {
    margin: 0;
    font-size: clamp(3.4rem, 7vw, 5.8rem);
    line-height: 0.92;
    letter-spacing: -0.05em;
}

.company-hero-lede {
    max-width: 560px;
    margin: 26px 0 0;
    color: var(--text-muted);
    font-size: clamp(1rem, 2vw, 1.16rem);
}

.company-console,
.company-overview-card,
.company-stage-frame,
.company-note-card,
.company-step,
.company-cta,
.institute-abstract,
.institute-column,
.institute-framework-card,
.institute-note,
.institute-cta {
    border: 1px solid rgba(159, 176, 197, 0.12);
    box-shadow: var(--shadow);
}

.company-console {
    display: grid;
    align-content: start;
    gap: 0;
    overflow: hidden;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 251, 253, 0.94)),
        radial-gradient(circle at top right, rgba(0, 185, 201, 0.06), transparent 32%);
}

.company-console-header {
    display: flex;
    align-items: center;
    min-height: 56px;
    padding: 0 22px;
    border-bottom: 1px solid rgba(19, 33, 46, 0.08);
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.company-console-screen {
    display: grid;
    gap: 0;
    padding: 10px 22px;
}

.company-console-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(19, 33, 46, 0.08);
}

.company-console-row:last-child {
    border-bottom: 0;
}

.company-console-row span {
    color: var(--text-soft);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.company-console-row strong {
    max-width: 220px;
    text-align: right;
    font-size: 0.98rem;
    font-family: var(--font-sans);
    font-weight: 800;
    letter-spacing: -0.02em;
}

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

.company-overview-card {
    min-height: 220px;
    padding: 28px;
    border-radius: 26px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(245, 249, 251, 0.92)),
        linear-gradient(135deg, rgba(0, 185, 201, 0.03), transparent 42%);
}

.company-overview-card h3,
.company-note-card h3,
.company-step h3,
.institute-column h3,
.institute-framework-card h3,
.institute-note h3 {
    margin: 0 0 10px;
    font-size: 1.28rem;
    line-height: 1.12;
}

.company-overview-card p,
.company-note-card p,
.company-step p,
.company-cta p,
.institute-column p,
.institute-framework-card p,
.institute-note p,
.institute-cta p,
.institute-abstract-list li {
    margin: 0;
    color: var(--text-muted);
}

.company-surface-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(280px, 0.94fr);
    gap: 22px;
    align-items: stretch;
}

.company-surface-stage {
    display: grid;
    gap: 18px;
}

.company-stage-frame {
    padding: 22px;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(226, 234, 240, 0.9), rgba(213, 223, 231, 0.96)),
        radial-gradient(circle at top right, rgba(0, 185, 201, 0.08), transparent 30%);
}

.company-stage-topbar {
    height: 14px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(0, 185, 201, 0.72), rgba(255, 255, 255, 0.3));
}

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

.company-stage-panel {
    min-height: 180px;
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 22px;
    border: 1px solid rgba(19, 33, 46, 0.08);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(243, 247, 250, 0.94));
}

.company-stage-panel-large {
    grid-row: span 2;
    min-height: 374px;
    background:
        linear-gradient(180deg, rgba(0, 185, 201, 0.08), rgba(255, 255, 255, 0.6)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(240, 245, 249, 0.96));
}

.company-stage-panel span,
.institute-framework-card span,
.institute-note span {
    color: var(--accent);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.company-stage-panel strong {
    font-size: 1.2rem;
    line-height: 1.1;
}

.company-stage-panel p {
    margin: 0;
    color: var(--text-muted);
}

.company-side-notes {
    display: grid;
    gap: 18px;
}

.company-note-card {
    min-height: 220px;
    padding: 28px;
    border-radius: 26px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(245, 249, 251, 0.92)),
        radial-gradient(circle at top left, rgba(0, 185, 201, 0.035), transparent 32%);
}

.company-workflow-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.company-step {
    min-height: 200px;
    padding: 24px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(244, 248, 251, 0.92)),
        linear-gradient(160deg, rgba(0, 185, 201, 0.025), transparent 46%);
}

.company-step-index {
    display: inline-flex;
    margin-bottom: 26px;
    color: var(--accent);
    font-size: 1.9rem;
    font-family: var(--font-serif);
    line-height: 1;
}

.company-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 34px;
    border-radius: 32px;
    background:
        linear-gradient(135deg, rgba(0, 185, 201, 0.08), rgba(255, 255, 255, 0.72) 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(241, 246, 249, 0.96));
}

.company-cta-copy {
    max-width: 620px;
}

.company-cta h2,
.institute-cta h2 {
    margin: 0 0 12px;
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 0.98;
}

.institute-hero {
    min-height: auto;
    padding-top: 164px;
    padding-bottom: 110px;
}

.institute-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(280px, 0.96fr);
    gap: 42px;
    align-items: start;
}

.institute-hero-copy {
    max-width: 720px;
}

.institute-hero-copy h1 {
    margin: 0;
    font-family: var(--font-serif);
    font-size: clamp(3.8rem, 7vw, 6rem);
    line-height: 0.94;
    letter-spacing: -0.045em;
    font-weight: 600;
}

.institute-hero-lede {
    max-width: 620px;
    margin: 28px 0 0;
    color: var(--text-muted);
    font-size: clamp(1.04rem, 2vw, 1.18rem);
}

.institute-abstract {
    padding: 34px;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.56)),
        radial-gradient(circle at top right, rgba(49, 84, 109, 0.06), transparent 34%);
}

.institute-abstract-kicker {
    margin: 0 0 10px;
    color: var(--accent);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.institute-abstract h2 {
    margin: 0;
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 0.98;
}

.institute-abstract-list {
    display: grid;
    gap: 12px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.institute-heading h2,
.institute-framework-block h2 {
    max-width: 780px;
    font-family: var(--font-serif);
}

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

.institute-column {
    min-height: 180px;
    padding: 0 0 0 18px;
    border: 0;
    border-left: 1px solid rgba(23, 32, 51, 0.12);
    box-shadow: none;
    background: transparent;
}

.institute-framework-layout {
    display: grid;
    gap: 30px;
}

.institute-framework-block {
    max-width: 680px;
}

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

.institute-framework-card {
    min-height: 220px;
    padding: 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.56);
}

.institute-notes-list {
    display: grid;
    gap: 18px;
}

.institute-note {
    display: grid;
    gap: 10px;
    padding: 26px 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.54);
}

.institute-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 34px;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.6)),
        radial-gradient(circle at top right, rgba(49, 84, 109, 0.05), transparent 34%);
}

.institute-cta-copy {
    max-width: 620px;
}

.subpage-hero {
    min-height: auto;
    padding-top: 156px;
    padding-bottom: 92px;
}

.subpage-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.98fr);
    gap: 28px;
    align-items: stretch;
}

.subpage-copy {
    display: grid;
    align-content: start;
    max-width: 720px;
}

.subpage-copy h1 {
    margin: 0;
    font-family: var(--font-serif);
    font-size: clamp(3.6rem, 7vw, 6rem);
    line-height: 0.92;
    letter-spacing: -0.04em;
    font-weight: 600;
}

.subpage-lede {
    margin: 28px 0 0;
    max-width: 620px;
    color: var(--text-muted);
    font-size: clamp(1.04rem, 2vw, 1.22rem);
}

.subpage-proof-list {
    display: grid;
    gap: 14px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.subpage-proof-list li {
    padding: 18px 20px;
    border: 1px solid rgba(159, 176, 197, 0.12);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
    box-shadow: var(--shadow);
}

.subpage-proof-list strong {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
    font-size: 0.96rem;
}

.subpage-proof-list span {
    color: var(--text-muted);
}

.subpage-panel {
    display: grid;
    align-content: start;
    gap: 20px;
    padding: 34px;
    border: 1px solid rgba(159, 176, 197, 0.12);
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(155, 231, 216, 0.09), transparent 34%),
        linear-gradient(180deg, rgba(15, 26, 44, 0.94), rgba(7, 15, 26, 0.94));
    box-shadow: var(--shadow);
}

.subpage-panel h2 {
    margin: 0;
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 0.98;
}

.subpage-panel-copy {
    margin: 0;
    color: var(--text-muted);
}

.subpage-stat-list,
.subpage-chip-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.subpage-stat-list li {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(159, 176, 197, 0.12);
}

.subpage-stat-list li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.subpage-stat-label {
    color: var(--text-soft);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 700;
}

.subpage-stat-value {
    text-align: right;
    font-weight: 700;
}

.subpage-chip-list {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.subpage-chip-list li {
    min-height: 120px;
    padding: 22px;
    border: 1px solid rgba(159, 176, 197, 0.12);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
}

.subpage-chip-list strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1rem;
}

.subpage-chip-list span {
    color: var(--text-muted);
}

.section-readiness {
    padding-top: 110px;
    padding-bottom: 112px;
    background:
        radial-gradient(circle at 20% 20%, rgba(209, 200, 183, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0));
}

.readiness-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
    gap: 18px;
    align-items: stretch;
}

.readiness-panel,
.materials-panel,
.inquiry-panel,
.inquiry-card {
    border: 1px solid rgba(159, 176, 197, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow);
}

.readiness-panel,
.materials-panel,
.inquiry-panel {
    border-radius: 30px;
}

.readiness-panel {
    padding: 32px;
    background:
        radial-gradient(circle at top left, rgba(155, 231, 216, 0.08), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
}

.readiness-copy,
.materialsNote,
.inquiryCopy,
.inquiry-card p:last-child {
    margin: 0;
    color: var(--text-muted);
}

.readiness-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}

.readiness-card {
    min-height: 210px;
    padding: 22px;
    border: 1px solid rgba(159, 176, 197, 0.12);
    border-radius: 22px;
    background:
        radial-gradient(circle at top right, rgba(155, 231, 216, 0.08), transparent 34%),
        rgba(10, 18, 31, 0.74);
}

.readiness-status,
.inquiry-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid rgba(159, 176, 197, 0.16);
    color: var(--accent);
    background: rgba(255, 255, 255, 0.03);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.readiness-card h3,
.materials-panel h3,
.inquiry-panel h2,
.inquiry-card h3 {
    margin: 14px 0 10px;
    line-height: 1.15;
}

.readiness-card h3,
.inquiry-card h3 {
    font-size: 1.16rem;
}

.readiness-card p {
    margin: 0;
    color: var(--text-muted);
}

.materials-panel {
    display: grid;
    align-content: start;
    gap: 18px;
    padding: 32px;
    background:
        linear-gradient(145deg, rgba(209, 200, 183, 0.12), rgba(255, 255, 255, 0.025) 40%),
        linear-gradient(180deg, rgba(9, 17, 30, 0.96), rgba(5, 11, 20, 0.98));
}

.materials-panel h3 {
    font-family: var(--font-serif);
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    line-height: 0.98;
}

.materials-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.materials-list li {
    position: relative;
    padding-left: 18px;
    color: var(--text);
}

.materials-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.64em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(209, 200, 183, 0.86);
}

.inquiry-panel {
    margin-top: 26px;
    padding: 34px;
}

.inquiry-heading {
    max-width: 760px;
}

.inquiry-panel h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 0.96;
}

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

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

.cta-panel {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 28px;
    margin-top: 26px;
    padding: 34px;
    border-radius: 32px;
    background:
        linear-gradient(135deg, rgba(155, 231, 216, 0.14), rgba(255, 255, 255, 0.02) 38%),
        linear-gradient(180deg, rgba(9, 17, 30, 0.96), rgba(5, 11, 20, 0.98));
}

.cta-copy {
    max-width: 720px;
}

.cta-panel h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 0.96;
}

.cta-panel-copy {
    max-width: 620px;
    margin-top: 16px;
    font-size: 1rem;
    line-height: 1.65;
}

.cta-side {
    display: grid;
    align-content: space-between;
    gap: 18px;
    min-width: min(100%, 320px);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.site-footer {
    padding: 30px 0 44px;
    border-top: 1px solid rgba(159, 176, 197, 0.1);
}

.footer-brand-block {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo-frame {
    flex: 0 0 auto;
    width: 72px;
    height: 72px;
    padding: 6px;
    border-radius: 22px;
    border: 1px solid rgba(210, 223, 240, 0.12);
    background: rgba(255, 255, 255, 0.03);
}

.footer-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1.06);
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, auto);
    gap: 22px;
    align-items: end;
}

.footer-brand {
    margin: 0 0 6px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-note {
    max-width: 520px;
    text-align: right;
}

.footer-meta {
    display: grid;
    justify-items: end;
    gap: 16px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px 18px;
}

.footer-links a {
    color: var(--text-soft);
    text-decoration: none;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--text);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulseGlow {
    from {
        transform: scale(0.95);
        opacity: 0.5;
    }
    to {
        transform: scale(1.12);
        opacity: 0.9;
    }
}

@keyframes tickerMove {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 1100px) {
    .hero-layout,
    .company-hero-layout,
    .company-surface-layout,
    .company-overview-grid,
    .company-workflow-strip,
    .institute-hero-layout,
    .institute-columns,
    .institute-framework-grid,
    .subpage-hero-layout,
    .brief-layout,
    .identity-layout,
    .split-layout,
    .model-layout,
    .readiness-layout,
    .readiness-grid,
    .inquiry-grid,
    .science-grid,
    .partner-grid,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .hero-layout,
    .split-layout {
        gap: 30px;
    }

    .hero-proof-grid {
        grid-template-columns: 1fr;
    }

    .hero-stage {
        min-height: 600px;
    }

    .bento-card {
        grid-column: span 6;
    }

    .bento-card-feature {
        grid-column: span 12;
    }

    .cta-panel,
    .company-cta,
    .institute-cta,
    .footer-inner {
        align-items: start;
    }

    .cta-side {
        min-width: 0;
        width: 100%;
    }

    .footer-meta {
        justify-items: start;
    }

    .footer-links {
        justify-content: flex-start;
    }

    .footer-note {
        text-align: left;
    }

    .company-stage-grid {
        grid-template-columns: 1fr;
    }

    .company-stage-panel-large {
        grid-row: span 1;
        min-height: 240px;
    }
}

@media (max-width: 860px) {
    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    .site-header {
        padding: 16px 0;
    }

    .header-inner {
        flex-wrap: wrap;
    }

    .header-actions {
        margin-left: auto;
    }

    .brand-logo-frame {
        width: 54px;
        height: 54px;
    }

    .site-nav {
        order: 3;
        width: 100%;
        justify-content: space-between;
        gap: 14px;
        padding-top: 6px;
        overflow-x: auto;
    }

    .hero {
        padding-top: 126px;
    }

    .company-hero,
    .institute-hero,
    .subpage-hero {
        padding-top: 138px;
    }

    .hero-copy h1 {
        font-size: clamp(3.2rem, 18vw, 4.8rem);
    }

    .hero-stage {
        min-height: 520px;
    }

    .brief-intro,
    .identity-copy,
    .brand-panel,
    .company-console,
    .company-overview-card,
    .company-stage-frame,
    .company-note-card,
    .company-step,
    .company-cta,
    .institute-abstract,
    .institute-framework-card,
    .institute-note,
    .institute-cta,
    .subpage-panel,
    .readiness-panel,
    .materials-panel,
    .inquiry-panel {
        padding: 30px;
    }

    .card-signal,
    .card-report,
    .card-note {
        position: absolute;
        left: auto;
        right: auto;
        width: auto;
        max-width: min(78vw, 290px);
    }

    .card-signal {
        top: 3%;
        left: 2%;
    }

    .card-report {
        right: 2%;
        bottom: 6%;
    }

    .card-note {
        left: 6%;
        bottom: 2%;
    }

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

    .bento-card,
    .bento-card-feature {
        grid-column: span 1;
        min-height: auto;
    }

    .institute-column {
        padding-left: 0;
        padding-top: 18px;
        border-left: 0;
        border-top: 1px solid rgba(23, 32, 51, 0.12);
    }
}

@media (max-width: 620px) {
    .section {
        padding: 88px 0;
    }

    .brief-intro {
        padding: 26px;
        border-radius: 28px;
    }

    .company-console,
    .company-overview-card,
    .company-stage-frame,
    .company-note-card,
    .company-step,
    .company-cta,
    .institute-abstract,
    .institute-framework-card,
    .institute-note,
    .institute-cta {
        padding: 22px;
        border-radius: 24px;
    }

    .subpage-proof-list li,
    .subpage-chip-list li {
        padding: 18px;
    }

    .brief-card,
    .inquiry-card {
        padding: 22px;
    }

    .header-actions {
        width: 100%;
        justify-content: space-between;
    }

    .brand-copy span {
        display: none;
    }

    .brand-logo-frame {
        width: 48px;
        height: 48px;
        border-radius: 16px;
    }

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

    .metric-row li:last-child {
        grid-column: 1 / -1;
    }

    .hero-stage {
        min-height: 440px;
    }

    .company-hero-copy h1,
    .subpage-copy h1 {
        font-size: clamp(3rem, 16vw, 4.4rem);
    }

    .institute-hero-copy h1 {
        font-size: clamp(3.1rem, 14vw, 4.6rem);
    }

    .stage-image-wrap {
        aspect-ratio: 0.8;
    }

    .floating-card {
        max-width: 210px;
        padding: 16px;
    }

    .hero-statement {
        padding-left: 14px;
        font-size: 0.94rem;
    }

    .hero-proof-card {
        min-height: auto;
    }

    .card-report h2 {
        font-size: 1.9rem;
    }

    .method-card {
        grid-template-columns: 1fr;
    }

    .site-nav {
        font-size: 0.9rem;
    }

    .company-cta,
    .institute-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-brand-block {
        align-items: flex-start;
    }
}

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

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* -----------------------------------
   Global Chinese Typography Optimizations
   ----------------------------------- */
html[lang="zh-CN"] body {
    /* Use strong sans-serif for headings in Chinese */
    --font-serif: var(--font-sans); 
}

html[lang="zh-CN"] .hero-copy h1,
html[lang="zh-CN"] .section-heading h2,
html[lang="zh-CN"] .page-hero-title,
html[lang="zh-CN"] .brief-intro h2,
html[lang="zh-CN"] .card-report h2,
html[lang="zh-CN"] .ecosystem-header h2 {
    letter-spacing: 0.02em;
    line-height: 1.35;
    word-break: normal;
    overflow-wrap: break-word;
}

html[lang="zh-CN"] .hero-copy h1 {
    font-size: clamp(2.2rem, 8vw, 4rem);
}

html[lang="zh-CN"] .section-heading h2,
html[lang="zh-CN"] .brief-intro h2,
html[lang="zh-CN"] .ecosystem-header h2 {
    font-size: clamp(1.8rem, 6vw, 3.2rem);
}

@media (max-width: 768px) {
    html[lang="zh-CN"] .hero-copy h1 {
        font-size: clamp(2rem, 9vw, 2.6rem);
    }
    
    html[lang="zh-CN"] .section-heading h2,
    html[lang="zh-CN"] .brief-intro h2,
    html[lang="zh-CN"] .ecosystem-header h2 {
        font-size: 1.6rem;
    }
    
    /* Ensure elements containing text never break page layout horizontally in Chinese */
    html[lang="zh-CN"] body {
        word-break: normal;
        overflow-wrap: break-word;
    }
}
