/* Shared visual language: ICC New Image / site-source/app/globals.css */
:root {
	--red: #c82b20;
	--ink: #0e0e0f;
	--soft: #f4f4f2;
	--line: #dededb;
	--muted: #777;
	--white: #fff;
	--header-height: 80px;
	--gutter: 3.2vw;
	--main-banner-height: 470px
}

* {
	box-sizing: border-box
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-height) + 16px)
}

body {
	margin: 0;
	color: var(--ink);
	background: var(--white);
	font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
	font-size: 14px;
	letter-spacing: 0;
	-webkit-font-smoothing: antialiased
}

button,
input,
select,
textarea {
	font: inherit
}

button {
	cursor: pointer;
	color: inherit
}

a {
	color: inherit;
	text-decoration: none
}

img {
	display: block;
	max-width: 100%
}

button,
a,
input,
select,
textarea,
summary {
	-webkit-tap-highlight-color: transparent
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
	outline: 2px solid var(--red);
	outline-offset: 5px
}

.section-wrap {
	width: 100%;
	padding-left: var(--gutter);
	padding-right: var(--gutter);
	margin: 0 auto
}

.header {
	height: var(--header-height);
	padding: 0 var(--gutter);
	display: flex;
	align-items: center;
	gap: 30px;
	position: sticky;
	top: 0;
	z-index: 100;
	width: 100%;
	background: rgba(255, 255, 255, .97);
	border-bottom: 1px solid #e5e5e5;
	backdrop-filter: blur(12px)
}

.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0
}

.platform-logo {
	width: 52px;
	height: 52px;
	object-fit: cover;
	flex-shrink: 0
}

.brand-name {
	font-size: 17px;
	font-weight: 700;
	white-space: nowrap
}

.brand-name>span {
	display: block;
	font-size: 12px;
	color: var(--muted);
	margin-top: 4px;
	font-weight: 400
}

.header nav {
	display: flex;
	gap: 28px;
	margin-left: auto
}

.header nav a {
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
	padding: 12px 0
}

.header nav a:hover,
.text-link:hover {
	color: var(--red)
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	background: var(--red);
	color: #fff;
	padding: 14px 20px;
	border: 1px solid var(--red);
	border-radius: 0;
	font-size: 13px;
	font-weight: 700;
	transition: background .2s
}

.button:hover {
	background: #a51f17;
	border-color: #a51f17
}

.button>span {
	font-size: 18px;
	line-height: 1
}

.button.small {
	padding: 12px 18px;
	font-size: 13px;
	gap: 18px
}

.menu-toggle {
	display: none;
	background: none;
	border: 0;
	font-size: 25px;
	padding: 5px
}

.hero {
	height: var(--main-banner-height);
	min-height: var(--main-banner-height);
	position: relative;
	overflow: hidden;
	background: #0a0a0b;
	color: white;
	display: flex;
	align-items: center;
	padding: 36px 6vw
}

.hero-background {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 70% 68%
}

.hero:after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, .86), rgba(0, 0, 0, .57) 48%, rgba(0, 0, 0, .12))
}

.hero-copy {
	position: relative;
	z-index: 1;
	max-width: 740px
}

.eyebrow {
	font-size: 12px;
	letter-spacing: 1px;
	font-weight: 800;
	display: flex;
	align-items: center;
	gap: 9px
}

.hero .eyebrow {
	color: #f0665c
}

.live-dot {
	height: 5px;
	width: 5px;
	border-radius: 50%;
	background: currentColor
}

h1 {
	font-size: clamp(44px, 5vw, 66px);
	line-height: 1.12;
	margin: 18px 0;
	letter-spacing: 0;
	font-weight: 800
}

h1,
h2 {
	text-wrap: balance
}

.accent {
	color: var(--red)
}

.hero h1 .accent {
	color: white
}

.period {
	color: var(--red)
}

.hero-description {
	font-size: 14px;
	line-height: 1.8;
	color: #ddd;
	margin: 0;
	max-width: 520px
}

.hero-actions {
	display: flex;
	align-items: center;
	gap: 28px;
	margin-top: 24px
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 20px;
	border: 0;
	border-bottom: 1px solid currentColor;
	padding: 0 0 6px;
	background: none;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.5
}

.hero .text-link {
	color: white
}

.hero .text-link:hover {
	color: #f0665c
}

.hero-footnote {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #aaa;
	font-size: 9px;
	margin-top: 23px
}

.mini-star {
	color: #f0665c;
	font-size: 17px
}

.divider {
	color: #555;
	margin: 0 4px
}

.ticker {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
	padding: 19px var(--gutter);
	border-bottom: 1px solid var(--line);
	background: var(--soft);
	font-size: 12px;
	font-weight: 700;
	white-space: nowrap;
	overflow: hidden
}

.ticker i {
	font-style: normal;
	color: var(--red);
	font-size: 20px
}

.section-kicker {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 24px;
	font-size: 12px;
	color: var(--muted)
}

.section-kicker>span:first-child {
	font-size: 12px;
	font-weight: 800;
	color: var(--red);
	letter-spacing: 1px
}

.section-kicker>span+span:before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 22px;
	height: 1px;
	background: #bbb;
	margin-right: 18px
}

h2 {
	font-size: clamp(32px, 3.5vw, 48px);
	line-height: 1.3;
	letter-spacing: 0;
	font-weight: 800;
	margin: 0
}

h3 {
	font-size: 21px;
	font-weight: 700;
	line-height: 1.4
}

.about {
	padding-top: 72px;
	padding-bottom: 54px
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6vw
}

.large-copy {
	font-size: 23px;
	line-height: 1.6;
	font-weight: 700;
	margin: 0 0 20px
}

.about-text>p:not(.large-copy) {
	font-size: 14px;
	line-height: 1.85;
	color: #666;
	margin: 0
}

.tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 23px
}

.tags>span {
	border: 1px solid #ccc;
	padding: 7px 10px;
	font-size: 12px;
	color: #666
}

.about-bottom {
	border-top: 1px solid var(--line);
	margin-top: 36px;
	padding-top: 22px;
	display: flex;
	align-items: center;
	gap: 22px
}

.about-bottom p {
	font-size: 12px;
	line-height: 1.8;
	margin: 0
}

.about-bottom p>span {
	color: var(--muted)
}

.about-arrow {
	font-size: 32px;
	margin-left: auto;
	color: var(--red)
}

.ecosystem {
	background: var(--soft);
	padding-top: 58px;
	padding-bottom: 62px
}

.section-heading {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 30px;
	margin-bottom: 30px
}

.section-heading>p {
	font-size: 12px;
	line-height: 1.8;
	color: #777;
	margin: 0 0 3px
}


.benefits {
	background: #fff;
	padding: 64px 0
}

.benefits-grid {
	display: grid;
	grid-template-columns: 1fr 1.12fr;
	gap: 7vw;
	margin-top: 34px
}

.eyebrow.light {
	color: var(--red);
	font-size: 9px
}

.benefits h2 {
	font-size: clamp(38px, 4.3vw, 60px);
	line-height: 1.22;
	margin-top: 22px
}

.benefits h2>span {
	color: var(--red)
}

.benefits-grid>div>p {
	font-size: 13px;
	line-height: 1.8;
	color: #666;
	margin: 24px 0 28px
}

.benefit-list article {
	display: flex;
	gap: 24px;
	padding: 27px 0;
	border-top: 1px solid var(--line)
}

.benefit-list article:first-child {
	padding-top: 0;
	border-top: 0
}

.benefit-list article:last-child {
	padding-bottom: 0
}

.benefit-number {
	font-size: 12px;
	color: var(--red);
	padding-top: 6px
}

.benefit-list h3 {
	font-size: 22px;
	margin: 0 0 12px
}

.benefit-list p {
	font-size: 12px;
	line-height: 1.8;
	color: #666;
	margin: 0 0 16px
}

.benefit-list article div>span {
	font-size: 12px;
	color: var(--muted)
}

.benefit-symbol {
	font-size: 27px;
	color: var(--red);
	margin-left: auto
}

.explore {
	padding-top: 64px;
	padding-bottom: 64px
}

.platform-tabs {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border-top: 1px solid #111;
	border-bottom: 1px solid var(--line);
	margin-bottom: 25px
}

.platform-tabs button {
	position: relative;
	border: 0;
	background: white;
	padding: 20px 10px;
	font-size: 13px;
	font-weight: 700
}

.platform-tabs button[aria-selected=true] {
	color: var(--red)
}

.platform-tabs button[aria-selected=true]:after {
	content: "";
	position: absolute;
	height: 3px;
	background: var(--red);
	left: 0;
	right: 0;
	bottom: -1px
}

.platform-panel {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	background: var(--soft);
	overflow: hidden
}

.platform-panel[hidden] {
	display: none
}

.platform-image {
	position: relative;
	min-height: 400px
}

.platform-image img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover
}

.platform-image>span {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 35px 24px 20px;
	background: linear-gradient(transparent, #000b);
	color: white;
	font-size: 9px;
	letter-spacing: 1px
}

.showcase-copy {
	padding: 45px 4vw
}

.pill {
	font-size: 12px;
	font-weight: 800;
	color: var(--red)
}

.showcase-copy h3 {
	font-size: clamp(26px, 2.7vw, 38px);
	line-height: 1.3;
	margin: 18px 0
}

.showcase-copy p {
	font-size: 13px;
	line-height: 1.85;
	color: #666
}

.showcase-copy .tags {
	margin: 22px 0 27px
}

.showcase-copy .text-link {
	font-size: 12px
}

.platform-note {
	font-size: 12px;
	line-height: 1.8;
	color: #888;
	margin: 17px 0 0
}

.join {
	padding-top: 58px;
	padding-bottom: 62px;
	background: var(--soft)
}

.join-steps {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px;
	margin-top: 34px
}

.join-steps article {
	border-top: 1px solid #111;
	padding-top: 20px
}

.join-steps article>span {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: var(--red);
	font-size: 12px;
	font-weight: 800
}

.join-steps i {
	font-style: normal;
	font-size: 24px
}

.join-steps h3 {
	font-size: 22px;
	margin: 22px 0 12px
}

.join-steps p {
	font-size: 12px;
	line-height: 1.8;
	color: #666;
	margin: 0
}

.join-banner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 25px;
	padding: 40px 3.2vw;
	background: var(--red);
	color: white;
	margin-top: 42px
}

.join-banner div>span {
	font-size: 9px;
	letter-spacing: 1px;
	font-weight: 800;
	color: #ffcbc7
}

.join-banner h3 {
	font-size: 30px;
	line-height: 1.3;
	margin: 12px 0 0
}

.join-banner .button {
	background: #111;
	border-color: #111
}

.join-banner .button:hover {
	background: #292929
}

.faq {
	display: grid;
	grid-template-columns: 1fr 2fr;
	column-gap: 6vw;
	margin-top: 40px
}

.faq>h3 {
	grid-row: 1/5;
	font-size: 22px;
	margin: 20px 0
}

.faq details {
	border-bottom: 1px solid #ccc;
	padding: 20px 0
}

.faq summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	list-style: none;
	cursor: pointer;
	font-size: 13px;
	font-weight: 700
}

.faq summary::-webkit-details-marker {
	display: none
}

.faq summary>span {
	font-size: 20px;
	color: var(--red)
}

.faq details[open] summary>span {
	transform: rotate(45deg)
}

.faq details p {
	font-size: 12px;
	line-height: 1.8;
	color: #666;
	margin: 15px 35px 0 0
}

.closing {
	background: #111;
	color: white;
	border-bottom: 1px solid #333;
	padding: 38px var(--gutter);
	position: relative
}

.closing>span {
	font-size: 9px;
	letter-spacing: 1px;
	color: #ef655b;
	font-weight: 800
}

.closing p {
	font-size: 27px;
	font-weight: 700;
	margin: 14px 65px 0 0
}

.closing a {
	position: absolute;
	right: var(--gutter);
	top: 48px;
	width: 38px;
	height: 38px;
	border: 1px solid #555;
	display: grid;
	place-items: center;
	font-size: 23px
}

footer.section-wrap {
	background: #0d0d0e;
	color: white;
	padding-top: 45px;
	padding-bottom: 30px
}

.footer-top {
	display: flex;
	align-items: center;
	gap: 35px
}

.footer-top .brand-name>span {
	color: #888
}

.footer-top>p {
	font-size: 12px;
	color: #888
}

.footer-top>div {
	margin-left: auto;
	display: flex;
	gap: 25px
}

.footer-top button {
	background: none;
	border: 0;
	font-size: 12px;
	color: #aaa;
	padding: 5px 0
}

.footer-top button:hover {
	color: white
}

.footer-bottom {
	border-top: 1px solid #333;
	padding-top: 23px;
	margin-top: 33px;
	display: flex;
	justify-content: space-between;
	gap: 20px;
	font-size: 12px;
	color: #888
}

.footer-bottom>span+span {
	font-size: 12px;
	letter-spacing: 1px
}

dialog {
	border: 1px solid #ccc;
	border-top: 4px solid var(--red);
	border-radius: 0;
	background: white;
	color: var(--ink);
	width: calc(100% - 32px);
	max-width: 550px;
	max-height: 90dvh;
	padding: 36px;
	box-shadow: 0 30px 100px #0005
}

dialog::backdrop {
	background: #0009;
	backdrop-filter: blur(6px)
}

.close-dialog {
	position: absolute;
	right: 15px;
	top: 10px;
	background: none;
	border: 0;
	font-size: 28px;
	color: #777
}

.close-dialog:hover {
	color: var(--red)
}

dialog .eyebrow {
	color: var(--red);
	font-size: 9px
}

dialog h2 {
	font-size: 29px;
	margin: 19px 0 10px;
	line-height: 1.3
}

.form-intro {
	font-size: 12px;
	color: #777
}

.preview-note {
	font-size: 12px;
	line-height: 1.8;
	padding: 13px 15px;
	background: var(--soft);
	border-left: 2px solid var(--red);
	color: #666;
	margin: 20px 0
}

form>label {
	display: block;
	font-size: 12px;
	margin: 17px 0;
	color: #444
}

input:not([type=checkbox]),
select,
textarea {
	display: block;
	width: 100%;
	margin-top: 8px;
	border: 1px solid #bbb;
	border-radius: 0;
	background: white;
	color: var(--ink);
	padding: 11px 12px;
	font-size: 12px
}

textarea {
	resize: vertical
}

.consent {
	display: flex !important;
	align-items: flex-start;
	gap: 8px;
	line-height: 1.8
}

.consent input {
	accent-color: var(--red);
	margin-top: 4px
}

.consent button {
	background: none;
	border: 0;
	color: var(--red);
	font-size: 12px;
	padding: 0 3px;
	text-decoration: underline
}

.submit {
	width: 100%;
	margin-top: 7px
}

#form-status {
	font-size: 12px;
	line-height: 1.8;
	color: var(--red)
}

#policy-content {
	font-size: 13px;
	line-height: 2;
	color: #666
}

body.modal-open {
	overflow: hidden
}

@media(min-width:1800px) {
	.section-wrap:not(.hero) {
		padding-left: 5.5vw;
		padding-right: 5.5vw
	}

}

@media(max-width:1100px) {
	.header {
		gap: 20px
	}

	.header nav {
		gap: 18px
	}

	.header nav a {
		font-size: 12px
	}

	.brand-name {
		font-size: 15px
	}

	.header .button.small {
		font-size: 12px;
		gap: 12px;
		padding: 12px
	}

	.benefits-grid {
		gap: 5vw
	}

	.showcase-copy {
		padding: 32px
	}

	.platform-image {
		min-height: 380px
	}
}

@media(max-width:900px) {
	:root {
		--header-height: 70px;
		--main-banner-height: 440px;
		--gutter: 20px
	}

	.header {
		gap: 18px
	}

	.brand-name>span {
		display: none
	}

	.header .button {
		margin-left: auto
	}

	.menu-toggle {
		display: block
	}

	.header nav {
		display: none;
		position: absolute;
		left: 0;
		right: 0;
		top: var(--header-height);
		padding: 18px 20px;
		background: white;
		border-bottom: 1px solid #ddd;
		margin: 0;
		flex-direction: column;
		gap: 10px
	}

	.header nav.open {
		display: flex
	}

	.header nav a {
		font-size: 14px
	}

	.hero {
		padding-left: 5vw;
		padding-right: 5vw
	}

	.hero-copy {
		max-width: 650px
	}

	.hero h1 {
		font-size: 52px
	}

	.about-grid {
		gap: 35px
	}

	.large-copy {
		font-size: 20px
	}

	.about-text>p:not(.large-copy) {
		font-size: 13px
	}

	.benefit-list article {
		gap: 16px
	}

	.benefit-list h3 {
		font-size: 19px
	}

	.benefits h2 {
		font-size: 40px
	}

	.platform-image {
		min-height: 420px
	}

	.showcase-copy {
		padding: 30px 25px
	}

	.showcase-copy h3 {
		font-size: 29px
	}

	.section-heading>p {
		font-size: 12px
	}

	.footer-top {
		gap: 20px
	}

	.footer-top>p {
		display: none
	}
}

@media(max-width:650px) {
	:root {
		--main-banner-height: 430px
	}

	.header {
		padding: 0 18px;
		gap: 12px
	}

	.platform-logo {
		width: 42px;
		height: 42px
	}

	.brand {
		gap: 10px
	}

	.brand-name {
		font-size: 15px
	}

	.header .button.small {
		font-size: 12px;
		padding: 10px 11px;
		gap: 8px
	}

	.header .button>span {
		font-size: 16px
	}

	.hero {
		padding: 30px 24px
	}

	.hero-background {
		object-position: 72% 66%
	}

	.hero:after {
		background: linear-gradient(90deg, #000d, #0007)
	}

	.hero h1 {
		font-size: clamp(36px, 8vw, 48px);
		line-height: 1.17;
		margin: 20px 0
	}

	.hero .eyebrow {
		font-size: 8px;
		letter-spacing: .3px
	}

	.hero-description {
		font-size: 12px;
		line-height: 1.9
	}

	.hero-actions {
		gap: 20px;
		margin-top: 23px
	}

	.hero-actions .button {
		font-size: 12px;
		padding: 13px 12px;
		gap: 13px
	}

	.hero-actions .text-link {
		font-size: 12px;
		gap: 8px
	}

	.hero-footnote {
		font-size: 8px;
		gap: 6px;
		margin-top: 22px
	}

	.ticker {
		justify-content: flex-start;
		font-size: 12px;
		padding: 15px 20px;
		gap: 22px
	}

	.ticker i {
		font-size: 17px
	}

	h2 {
		font-size: 32px;
		line-height: 1.3
	}

	.section-kicker {
		font-size: 9px;
		gap: 12px;
		margin-bottom: 23px
	}

	.section-kicker>span:first-child {
		font-size: 8px;
		letter-spacing: .6px
	}

	.section-kicker>span+span:before {
		width: 12px;
		margin-right: 12px
	}

	.about {
		padding-top: 52px;
		padding-bottom: 43px
	}

	.about-grid {
		grid-template-columns: 1fr;
		gap: 28px
	}

	.large-copy {
		font-size: 21px;
		margin-bottom: 16px
	}

	.about-bottom {
		margin-top: 28px;
		padding-top: 20px
	}

	.about-bottom p {
		font-size: 12px
	}

	.section-heading {
		flex-direction: column;
		align-items: flex-start;
		gap: 18px;
		margin-bottom: 28px
	}

	.section-heading>p {
		font-size: 12px
	}

	.ecosystem {
		padding-top: 48px;
		padding-bottom: 50px
	}

	.benefits {
		padding: 50px 0
	}

	.benefits-grid {
		grid-template-columns: 1fr;
		gap: 39px;
		margin-top: 30px
	}

	.benefits h2 {
		font-size: 44px
	}

	.benefits h2 br:nth-of-type(2) {
		display: none
	}

	.benefits-grid>div>p {
		font-size: 12px
	}

	.benefit-list h3 {
		font-size: 21px
	}

	.benefit-list article {
		padding: 24px 0
	}

	.benefit-list p {
		font-size: 12px
	}

	.explore {
		padding-top: 50px;
		padding-bottom: 48px
	}

	.platform-tabs {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0;
		margin-bottom: 20px
	}

	.platform-tabs button {
		font-size: 12px;
		padding: 17px 8px;
		border-bottom: 1px solid var(--line)
	}

	.platform-panel {
		grid-template-columns: 1fr
	}

	.platform-image {
		min-height: 300px
	}

	.showcase-copy {
		padding: 30px 24px
	}

	.showcase-copy h3 {
		font-size: 30px
	}

	.showcase-copy p {
		font-size: 12px
	}

	.platform-note {
		font-size: 9px
	}

	.join {
		padding-top: 47px;
		padding-bottom: 48px
	}

	.join-steps {
		grid-template-columns: 1fr;
		gap: 20px;
		margin-top: 29px
	}

	.join-steps article {
		position: relative;
		padding: 20px 0 0 44px
	}

	.join-steps article>span {
		position: absolute;
		left: 0;
		top: 24px
	}

	.join-steps i {
		display: none
	}

	.join-steps h3 {
		font-size: 21px;
		margin: 0 0 10px
	}

	.join-steps p br {
		display: none
	}

	.join-banner {
		flex-direction: column;
		align-items: flex-start;
		padding: 29px 24px;
		margin-top: 34px;
		gap: 25px
	}

	.join-banner div>span {
		font-size: 7px;
		letter-spacing: .5px
	}

	.join-banner h3 {
		font-size: 26px
	}

	.join-banner .button {
		width: 100%;
		justify-content: space-between;
		font-size: 12px
	}

	.faq {
		grid-template-columns: 1fr;
		margin-top: 28px
	}

	.faq>h3 {
		grid-row: auto;
		font-size: 22px;
		margin: 20px 0 10px
	}

	.faq summary {
		font-size: 12px
	}

	.faq details {
		padding: 19px 0
	}

	.faq details p {
		font-size: 12px;
		margin-right: 15px
	}

	.closing {
		padding: 32px 20px
	}

	.closing>span {
		font-size: 8px
	}

	.closing p {
		font-size: 20px;
		line-height: 1.5;
		margin-top: 12px
	}

	.closing a {
		right: 20px;
		top: 44px;
		width: 32px;
		height: 32px;
		font-size: 19px
	}

	footer.section-wrap {
		padding-top: 32px;
		padding-bottom: 25px
	}

	.footer-top {
		flex-wrap: wrap;
		gap: 26px
	}

	.footer-top .brand-name>span {
		display: block;
		font-size: 12px
	}

	.footer-top>div {
		gap: 20px;
		margin-left: 0
	}

	.footer-top button {
		font-size: 12px
	}

	.footer-bottom {
		flex-direction: column;
		gap: 14px;
		margin-top: 28px;
		font-size: 12px
	}

	.footer-bottom>span+span {
		font-size: 12px
	}

	dialog {
		padding: 30px 23px
	}

	dialog h2 {
		font-size: 27px
	}
}

/* Institutional pages share the platform's visual tokens. */
h1 {
	font-size: 46px
}

h2 {
	font-size: 40px
}

.benefits h2 {
	font-size: 48px
}

.eyebrow,
.section-kicker>span:first-child,
.closing>span,
.join-banner div>span,
.footer-bottom>span+span {
	letter-spacing: 0
}

.institution-hero {
	position: relative;
	isolation: isolate;
	min-height: 580px;
	height: min(680px, calc(100svh - 170px));
	background: #161617;
	color: white;
	display: flex;
	align-items: center;
	overflow: hidden;
	padding-top: 38px;
	padding-bottom: 80px
}

.institution-copy {
	position: relative;
	z-index: 2;
	max-width: 680px
}

.institution-copy .eyebrow {
	font-size: 12px;
	color: #eee
}

.institution-copy h1 {
	margin: 18px 0;
	line-height: 1.18
}

.hero-initials {
	display: block;
	font-size: 72px;
	margin-bottom: 10px
}

.institution-intro {
	font-size: 14px;
	line-height: 1.9;
	color: #eee;
	margin: 0
}

.institution-copy .text-link {
	color: white
}

.hero-record {
	position: absolute;
	inset: 0;
	z-index: 0
}

.hero-record-image {
	position: absolute;
	inset: 0
}

.hero-record-image:after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, #101011ed 0%, #101011c9 35%, #10101133 75%), linear-gradient(0deg, #101011e6, transparent 35%)
}

.hero-record-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 45%
}

.hero-record-image>span {
	position: absolute;
	right: var(--gutter);
	top: 28px;
	z-index: 1;
	font-size: 12px;
	color: white
}

.hero-record-caption {
	position: absolute;
	bottom: 23px;
	left: var(--gutter);
	right: var(--gutter);
	display: flex;
	align-items: center;
	gap: 24px;
	border-top: 1px solid #ffffff55;
	padding-top: 17px;
	font-size: 12px
}

.hero-record-caption b {
	font-size: 14px
}

.hero-record-caption b span {
	margin-left: 16px
}

.hero-record-caption small {
	margin-left: auto;
	color: #ddd
}

.hero-record:focus-visible {
	outline-offset: -5px
}

.trust-index {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	background: var(--soft);
	border-bottom: 1px solid var(--line)
}

.trust-index a {
	padding: 25px 24px;
	border-right: 1px solid var(--line);
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 9px 20px;
	align-items: center
}

.trust-index a:first-child {
	padding-left: 0
}

.trust-index a:last-child {
	border: 0
}

.trust-index a>span {
	color: var(--red);
	font-size: 12px;
	grid-row: 1/3
}

.trust-index b {
	font-size: 16px
}

.trust-index small {
	font-size: 12px;
	color: #666
}

.trust-index a:hover b {
	color: var(--red)
}

.about-text>p.about-followup {
	margin-top: 18px
}

.identity-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px;
	margin-top: 42px;
	border-top: 1px solid var(--line);
	padding-top: 26px
}

.identity-grid article>span {
	font-size: 12px;
	color: var(--red);
	font-weight: 700
}

.identity-grid h3 {
	font-size: 19px;
	margin: 12px 0
}

.identity-grid p {
	font-size: 13px;
	line-height: 1.85;
	margin: 0;
	color: #666
}

.records,
.people,
.institution-work {
	padding-top: 64px;
	padding-bottom: 64px
}

.records {
	background: var(--soft)
}

.record-feature {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
	gap: 48px;
	align-items: start
}

.record-visual img {
	width: 100%;
	height: auto;
	aspect-ratio: 600/399;
	object-fit: contain
}

.record-visual>p {
	font-size: 12px;
	color: #666;
	line-height: 1.7;
	margin: 10px 0 0
}

.record-copy .eyebrow {
	color: var(--red);
	margin: 0;
	font-size: 12px
}

.record-copy h3 {
	font-size: 28px;
	margin: 16px 0
}

.record-copy>p:not(.eyebrow) {
	font-size: 14px;
	line-height: 1.9;
	color: #555;
	margin: 12px 0
}

.record-facts {
	margin: 20px 0 24px;
	font-size: 12px
}

.record-facts>div {
	display: grid;
	grid-template-columns: 75px minmax(0, 1fr);
	gap: 12px;
	padding: 12px 0;
	border-top: 1px solid var(--line);
	line-height: 1.7
}

.record-facts dt {
	color: #777
}

.record-facts dd {
	margin: 0
}

.report-excerpt {
	display: grid;
	grid-template-columns: 120px minmax(0, 1fr) 32px;
	gap: 24px;
	align-items: center;
	border-top: 1px solid #bbb;
	margin-top: 36px;
	padding-top: 27px
}

.report-excerpt>span {
	color: var(--red);
	font-size: 12px
}

.report-excerpt blockquote {
	font-size: 20px;
	line-height: 1.8;
	margin: 0;
	font-weight: 700
}

.report-excerpt>a {
	font-size: 28px;
	color: var(--red)
}

.people-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 32px;
	align-items: start;
	align-items: center;
}

.person-photo {
	margin: 0;
	background: #111;
	color: white;
    max-width: 720px;
}

.person-photo img {
	width: 100%;
	height: auto;
	aspect-ratio: 1/1;
	object-fit: cover;
	object-position: 30% center;
}

.person-photo figcaption {
	padding: 17px 20px;
	font-size: 12px;
	color: #bbb;
	border-top: 1px solid #333
}

.person-copy .eyebrow {
	margin: 0 0 18px;
	color: var(--red);
	font-size: 12px
}

.person-copy h2 {
	font-size: 44px
}

.person-copy h3 {
	font-size: 17px;
	margin: 12px 0 22px
}

.person-copy>p:not(.eyebrow) {
	font-size: 14px;
	color: #666;
	line-height: 1.9
}

.person-credentials {
	margin: 24px 0
}

.person-credentials article {
	display: flex;
	gap: 24px;
	padding: 17px 0;
	border-top: 1px solid var(--line)
}

.person-credentials article>span {
	font-size: 12px;
	color: var(--red);
	padding-top: 2px
}

.person-credentials b {
	font-size: 14px;
	line-height: 1.6
}

.person-credentials p {
	font-size: 12px;
	color: #777;
	line-height: 1.7;
	margin: 6px 0 0
}

.person-note {
	display: block;
	font-size: 12px;
	color: #777;
	line-height: 1.7;
	margin-top: 18px
}

.institution-work {
	border-top: 1px solid var(--line)
}

.institution-work-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px
}

.institution-work-grid article {
	border-top: 2px solid var(--ink);
	padding-top: 23px;
	display: flex;
	flex-direction: column
}

.institution-work-grid article>span {
	color: var(--red);
	font-size: 12px;
	font-weight: 700
}

.institution-work-grid h3 {
	font-size: 23px;
	margin: 22px 0 14px
}

.institution-work-grid p {
	font-size: 14px;
	line-height: 1.9;
	color: #666;
	margin: 0 0 28px
}

.institution-work-grid a {
	display: flex;
	justify-content: space-between;
	border-top: 1px solid var(--line);
	padding-top: 16px;
	font-size: 12px;
	font-weight: 700;
	margin-top: auto
}

.institution-work-grid a:hover {
	color: var(--red)
}

.faq details p a {
	color: var(--red);
	text-decoration: underline
}

.footer-top>div {
	align-items: center
}

.footer-top>div>a {
	font-size: 12px;
	color: #aaa
}

.footer-top>div>a:hover {
	color: white
}

@media(min-width:1800px) {
	:root {
		--gutter: 5.5vw
	}
	/*.people-grid {
    	grid-template-columns: minmax(0, 750px) 1fr;

    }*/
}

@media(max-width:1100px) {
	.record-feature {
		gap: 30px
	}

	.people-grid {
		gap: 36px
	}

	.trust-index a {
		gap: 8px 14px;
		padding: 22px 18px
	}

	.institution-work-grid h3 {
		font-size: 20px
	}

	.hero-record-caption>span {
		display: none
	}
}

@media(max-width:900px) {
	.institution-hero {
		min-height: 570px
	}

	.identity-grid {
		gap: 22px
	}

	.identity-grid h3 {
		font-size: 17px
	}

	.record-feature,
	.people-grid {
		gap: 28px
	}

	.record-copy h3 {
		font-size: 24px
	}

	.record-copy>p:not(.eyebrow),
	.person-copy>p:not(.eyebrow) {
		font-size: 13px
	}

	.person-photo img {
		aspect-ratio: 4/5
	}

	.institution-work-grid {
		gap: 22px
	}

	.institution-work-grid h3 {
		font-size: 18px
	}

	.institution-work-grid p {
		font-size: 13px
	}

	.trust-index a {
		display: flex;
		flex-direction: column;
		align-items: flex-start
	}

	.report-excerpt {
		grid-template-columns: 95px minmax(0, 1fr) 24px;
		gap: 16px
	}

	.report-excerpt blockquote {
		font-size: 17px
	}
}

@media(max-width:650px) {
	h2 {
		font-size: 30px
	}

	.institution-hero {
		min-height: 0;
		height: 600px;
		max-height: none;
		padding-top: 36px;
		padding-bottom: 110px;
		align-items: center
	}

	.institution-copy h1 {
		font-size: 36px
	}

	.hero-initials {
		font-size: 58px;
		margin-bottom: 12px
	}

	.institution-copy .eyebrow {
		font-size: 12px
	}

	.institution-intro {
		font-size: 12px;
		line-height: 1.9
	}

	.institution-intro br:nth-of-type(2) {
		display: none
	}

	.hero-record-image img {
		object-position: 58% center
	}

	.hero-record-image:after {
		background: linear-gradient(90deg, #101011e6, #10101170), linear-gradient(0deg, #101011ef, transparent 35%)
	}

	.hero-record-image>span {
		font-size: 12px;
		top: 18px
	}

	.hero-record-caption {
		bottom: 22px;
		display: block;
		padding-top: 15px
	}

	.hero-record-caption b {
		font-size: 13px
	}

	.hero-record-caption small {
		display: block;
		margin-top: 8px;
		font-size: 12px
	}

	.trust-index a {
		padding: 20px 12px;
		gap: 9px
	}

	.trust-index b {
		font-size: 13px;
		line-height: 1.5
	}

	.trust-index a>span {
		font-size: 9px
	}

	.trust-index small {
		display: none
	}

	.identity-grid {
		grid-template-columns: 1fr;
		gap: 23px;
		margin-top: 28px
	}

	.identity-grid h3 {
		font-size: 20px;
		margin: 9px 0
	}

	.identity-grid article+article {
		border-top: 1px solid var(--line);
		padding-top: 23px
	}

	.records,
	.people,
	.institution-work {
		padding-top: 48px;
		padding-bottom: 48px
	}

	.record-feature,
	.people-grid {
		grid-template-columns: 1fr;
		gap: 28px
	}

	.record-copy h3 {
		font-size: 25px
	}

	.record-copy>p:not(.eyebrow) {
		font-size: 13px
	}

	.report-excerpt {
		grid-template-columns: minmax(0, 1fr) 24px;
		gap: 12px;
		margin-top: 30px;
		padding-top: 22px
	}

	.report-excerpt>span {
		grid-column: 1/-1
	}

	.report-excerpt blockquote {
		font-size: 17px
	}

	.person-photo img {
		aspect-ratio: 6/5;
		object-position: 28% center
	}

	.person-copy h2 {
		font-size: 36px
	}

	.person-copy h3 {
		margin-bottom: 16px
	}

	.person-credentials article {
		gap: 20px
	}

	.institution-work-grid {
		grid-template-columns: 1fr;
		gap: 30px
	}

	.institution-work-grid h3 {
		font-size: 22px;
		margin-top: 18px
	}

	.institution-work-grid p {
		font-size: 13px;
		margin-bottom: 20px
	}

	.benefits h2 {
		font-size: 36px
	}

	.footer-top>div {
		flex-wrap: wrap
	}

	dialog .eyebrow {
		letter-spacing: 0
	}
}

@media(max-width:360px) {
	:root {
		--gutter: 16px
	}

	.header {
		padding: 0 12px;
		gap: 8px
	}

	.brand-name {
		font-size: 13px
	}

	.header .button.small {
		padding: 10px 8px
	}

	.institution-copy h1 {
		font-size: 32px
	}

	.hero-actions {
		gap: 15px
	}

	.hero-actions .text-link {
		font-size: 9px
	}

	.trust-index a {
		padding-left: 9px;
		padding-right: 9px
	}

	.trust-index a:first-child {
		padding-left: 0
	}
}

@media(max-height:740px) and (min-width:651px) {
	.institution-hero {
		min-height: 470px;
		height: 470px
	}

	.institution-copy h1 {
		font-size: 36px
	}

	.hero-initials {
		font-size: 52px
	}

	.institution-intro {
		font-size: 12px
	}
}

@media(max-height:740px) and (max-width:650px) {
	.institution-hero {
		height: calc(100svh - 125px);
		min-height: 420px;
		padding-top: 30px;
		padding-bottom: 85px
	}

	.institution-copy h1 {
		font-size: 30px;
		margin: 12px 0
	}

	.hero-initials {
		font-size: 42px;
		margin-bottom: 7px
	}

	.institution-intro {
		font-size: 12px
	}

	.hero-actions {
		margin-top: 16px
	}

	.hero-record-caption {
		bottom: 14px
	}
}

@media(prefers-reduced-motion:reduce) {
	html {
		scroll-behavior: auto
	}

	*,
	*:before,
	*:after {
		transition: none !important
	}
}

/* ===== 转载页（forum30.html 创意巅峰30人）正文排版 ===== */
.news {
	padding-top: 56px;
	padding-bottom: 72px;
	max-width: 1210px
}

.news-bar {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px 26px;
	font-size: 12px;
	color: var(--muted);
	border-bottom: 1px solid var(--line);
	padding-bottom: 16px
}

.news-bar .text-link {
	font-size: 12px;
	margin-left: auto
}

.news-title {
	font-size: clamp(24px, 3vw, 34px);
	line-height: 1.45;
	margin: 34px 0 8px
}

.news-body {
	margin-top: 30px
}

.news-body>p {
	font-size: 15px;
	line-height: 2.05;
	color: #3a3a3a;
	margin: 0 0 20px;
	text-indent: 2em
}

.news-body>p.news-name,
.news-body>p.news-img {
	text-indent: 0
}

.news-body p.news-name {
	margin: 26px 0 2px;
	font-size: 16px
}

.news-body p.news-name strong {
	font-size: 17px;
	letter-spacing: .5px
}

.news-body p.news-img {
	text-align: center;
	margin: 34px auto
}

.news-body .news-img img {
	width: 70%;
	max-width: 100%;
	height: auto;
	border: 1px solid var(--line);
	box-shadow: 0 10px 30px #0001;
	margin: 0 auto;
}

.news-head {
	font-size: 20px;
	margin: 44px 0 18px;
	padding: 13px 0 0;
	border-top: 2px solid var(--red);
	letter-spacing: 1px;
	line-height: 1.5
}

.news-source-note {
	font-size: 12px;
	line-height: 1.9;
	color: #999;
	border-top: 1px solid var(--line);
	margin: 40px 0 0;
	padding-top: 18px
}

@media(max-width:650px) {
	.news {
		padding-top: 44px;
		padding-bottom: 52px
	}

	.news-bar {
		gap: 8px 16px
	}

	.news-bar .text-link {
		margin-left: 0
	}

	.news-title {
		font-size: 22px;
		margin: 26px 0 6px
	}

	.news-body {
		margin-top: 22px
	}

	.news-body>p {
		font-size: 14px;
		line-height: 1.95
	}

	.news-head {
		font-size: 18px;
		margin-top: 34px
	}
}

/* ===== 统一右上角外链箭头图标：SVG 矢量绘制（mask），不再依赖字体，跨端一致 ===== */
.arr-up {
	display: inline-block;
	flex: 0 0 auto;
	width: 1.15em;
	height: 1.15em;
	background-color: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M7%2017%2017%207M17%207H8M17%207v9%27%2F%3E%3C%2Fsvg%3E") center/contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27none%27%20stroke%3D%27%23000%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M7%2017%2017%207M17%207H8M17%207v9%27%2F%3E%3C%2Fsvg%3E") center/contain no-repeat;
	vertical-align: -.12em
}

/* ===== 作品案例（work.html）====== */
.works {
	background: var(--ink);
	color: #fff;
	padding: clamp(56px, 8vw, 96px) 0 clamp(48px, 6vw, 72px);
}
.works .value-head {
	margin-bottom: clamp(28px, 4vw, 48px);
}
.works .value-head p {
	max-width: 56ch;
	color: rgba(255, 255, 255, .72);
}
.work-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(16px, 1.8vw, 24px);
}
.work-card {
	display: flex;
	flex-direction: column;
	gap: 14px;
	min-width: 0;
}
.work-media {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 9 / 16;
	padding: 0;
	margin: 0;
	border: 0;
	background: linear-gradient(160deg, #282828, #101010);
	cursor: pointer;
	overflow: hidden;
	border-radius: 12px;
	isolation: isolate;
	transition: transform .25s ease, box-shadow .25s ease;
}
.work-media:hover,
.work-media:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 14px 40px -14px rgba(0, 0, 0, .7);
	outline: none;
}
.work-poster {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity .25s ease;
}
.work-media.is-playing .work-poster {
	opacity: 0;
	pointer-events: none;
}
.work-tag {
	position: absolute;
	top: 10px;
	left: 10px;
	padding: 3px 9px;
	font-size: 11px;
	font-weight: 500;
	color: #1a1a1a;
	background: rgba(255, 255, 255, .88);
	backdrop-filter: blur(6px);
	border-radius: 999px;
	letter-spacing: .02em;
}
.play-icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .92);
	backdrop-filter: blur(4px);
	display: inline-block;
	position: relative;
	transition: transform .2s ease, background .2s ease;
	box-shadow: 0 6px 20px -8px rgba(0, 0, 0, .6);
}
.play-icon::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 55%;
	transform: translate(-50%, -50%);
	border-style: solid;
	border-width: 10px 0 10px 16px;
	border-color: transparent transparent transparent #1a1a1a;
}
.work-media:hover .play-icon {
	transform: scale(1.08);
	background: rgba(200, 43, 32, .92);
	box-shadow: 0 8px 24px -8px rgba(200, 43, 32, .55);
}
.work-video {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	background: transparent;
	opacity: 1;
	pointer-events: none;
	transition: opacity .25s ease;
}
.work-media.is-playing .work-video {
	opacity: 1;
	pointer-events: auto;
}
.work-meta h3 {
	margin: 0 0 6px;
	font-size: clamp(16px, 1.4vw, 18px);
	font-weight: 600;
	color: #fff;
	letter-spacing: -.005em;
}
.work-meta > p {
	margin: 0 0 10px;
	font-size: 13px;
	color: rgba(255, 255, 255, .6);
}
.work-stats {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 14px;
}
.work-stats li {
	font-size: 12px;
	color: rgba(255, 255, 255, .7);
	display: inline-flex;
	align-items: baseline;
	gap: 4px;
}
.work-stats b {
	font-weight: 500;
	color: rgba(255, 255, 255, .5);
	font-weight: normal;
}
.works-disclaimer {
	margin: clamp(28px, 3.5vw, 40px) 0 0;
	font-size: 12px;
	color: rgba(255, 255, 255, .55);
	text-align: center;
	max-width: 64ch;
	margin-left: auto;
	margin-right: auto;
}
.works-disclaimer a {
	color: var(--red-bright, #ff6b5b);
	text-decoration: none;
	border-bottom: 1px solid currentColor;
}

@media (max-width: 1100px) {
	.work-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 720px) {
	.work-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 560px) {
	.work-media {
		border-radius: 10px;
	}
}