/*
Theme Name: 广慈新医知
Theme URI: https://guangci-xinyizhi.wenghaitao1981.chatgpt.site
Author: 微加AI
Author URI: https://guangci-xinyizhi.wenghaitao1981.chatgpt.site
Description: 面向医学新知与慢病管理科普平台打造的完整响应式 WordPress 主题，支持首页、单页、知识文章、分类、搜索、合作表单与AI知识助手。
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: guangci-xinyizhi
Tags: custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, blog, education
*/

:root {
	--gc-ink: #16352a;
	--gc-muted: #66746d;
	--gc-green-950: #053f29;
	--gc-green-900: #075137;
	--gc-green-800: #096641;
	--gc-green-700: #0a7b4b;
	--gc-green-600: #169458;
	--gc-lime: #84bd35;
	--gc-mint: #eaf5ed;
	--gc-soft: #f3f8f2;
	--gc-cream: #f6f3e9;
	--gc-gold: #d39a49;
	--gc-white: #fff;
	--gc-line: rgba(16, 72, 49, .13);
	--gc-shadow: 0 24px 70px rgba(15, 69, 47, .11);
	--gc-container: min(1240px, calc(100vw - 64px));
	--gc-radius: 26px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	overflow-x: hidden;
	background: var(--gc-white);
	color: var(--gc-ink);
	font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.75;
	-webkit-font-smoothing: antialiased;
}

body.gc-overlay-open,
body.gc-menu-open {
	overflow: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
select,
textarea {
	color: inherit;
	font: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

.gc-container {
	width: var(--gc-container);
	margin-inline: auto;
}

.gc-skip-link,
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.gc-skip-link:focus {
	z-index: 9999;
	top: 10px;
	left: 10px;
	width: auto;
	height: auto;
	padding: 12px 18px;
	clip: auto;
	background: #fff;
	border-radius: 8px;
	box-shadow: var(--gc-shadow);
}

.gc-top-note {
	height: 32px;
	background: var(--gc-green-950);
	color: rgba(255, 255, 255, .8);
	font-size: 11px;
	letter-spacing: .08em;
}

.gc-top-note .gc-container {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.gc-header {
	position: sticky;
	z-index: 90;
	top: 0;
	height: 78px;
	border-bottom: 1px solid rgba(12, 82, 52, .1);
	background: rgba(255, 255, 255, .95);
	backdrop-filter: blur(18px);
}

.admin-bar .gc-header {
	top: 32px;
}

.admin-bar .gc-filter-bar {
	top: 110px;
}

.gc-header__inner {
	height: 100%;
	display: grid;
	grid-template-columns: 220px minmax(0, 1fr) auto;
	align-items: center;
	gap: 26px;
}

.gc-brand {
	width: max-content;
	max-width: 100%;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--gc-green-900);
}

.gc-brand__mark {
	width: 48px;
	height: 48px;
	flex: 0 0 48px;
	display: grid;
	place-items: center;
	overflow: hidden;
	border-radius: 12px;
	background: #fff;
}

.gc-brand__mark img,
.gc-brand__mark .custom-logo {
	width: 44px;
	height: 44px;
	object-fit: contain;
}

.gc-brand__copy {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 3px;
	white-space: nowrap;
}

.gc-brand__copy strong {
	font-family: "Noto Serif SC", "Songti SC", "STSong", serif;
	font-size: 20px;
	font-weight: 800;
	letter-spacing: .08em;
	line-height: 1.1;
}

.gc-brand__copy small {
	color: #7b8c83;
	font-size: 8px;
	letter-spacing: .04em;
	line-height: 1.2;
}

.gc-nav {
	height: 100%;
}

.gc-menu {
	height: 100%;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: clamp(13px, 1.5vw, 25px);
	list-style: none;
}

.gc-menu li {
	position: relative;
	display: flex;
	align-items: stretch;
}

.gc-menu a {
	position: relative;
	display: flex;
	align-items: center;
	color: #40584e;
	font-size: 14px;
	white-space: nowrap;
	transition: .2s ease;
}

.gc-menu a::after {
	content: "";
	position: absolute;
	right: 50%;
	bottom: 0;
	left: 50%;
	height: 2px;
	background: var(--gc-green-700);
	transition: .2s ease;
}

.gc-menu a:hover,
.gc-menu .current-menu-item > a,
.gc-menu .current_page_item > a {
	color: var(--gc-green-800);
	font-weight: 700;
}

.gc-menu a:hover::after,
.gc-menu .current-menu-item > a::after,
.gc-menu .current_page_item > a::after {
	right: 0;
	left: 0;
}

.gc-header__actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.gc-icon-button,
.gc-menu-button {
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid var(--gc-line);
	border-radius: 50%;
	background: #fff;
	cursor: pointer;
}

.gc-icon-button {
	display: grid;
	place-items: center;
}

.gc-search-icon {
	position: relative;
	width: 15px;
	height: 15px;
	display: block;
	border: 1.8px solid currentColor;
	border-radius: 50%;
}

.gc-search-icon::after {
	content: "";
	position: absolute;
	right: -5px;
	bottom: -2px;
	width: 6px;
	height: 1.8px;
	background: currentColor;
	transform: rotate(45deg);
	transform-origin: left center;
}

.gc-small-cta {
	height: 42px;
	padding: 0 17px;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	border-radius: 24px;
	background: var(--gc-green-800);
	color: #fff;
	font-size: 13px;
	transition: .2s ease;
}

.gc-small-cta:hover {
	background: var(--gc-green-600);
	transform: translateY(-1px);
}

.gc-menu-button {
	display: none;
}

.gc-menu-button i {
	width: 17px;
	height: 1px;
	display: block;
	margin: 4px auto;
	background: var(--gc-ink);
	transition: .2s ease;
}

.gc-section {
	padding: 108px 0;
}

.gc-section--soft {
	background: var(--gc-soft);
}

.gc-eyebrow {
	margin: 0 0 18px;
	color: var(--gc-green-700);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .2em;
}

.gc-eyebrow--light {
	color: #b1e9c1;
}

.gc-section-heading {
	margin-bottom: 45px;
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 50px;
}

.gc-section-heading h2 {
	max-width: 760px;
	margin: 0;
	font-family: "Noto Serif SC", "Songti SC", serif;
	font-size: clamp(32px, 3.3vw, 48px);
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -.02em;
}

.gc-section-heading p:not(.gc-eyebrow) {
	max-width: 650px;
	margin: 15px 0 0;
	color: var(--gc-muted);
}

.gc-section-heading > a,
.gc-text-link {
	color: var(--gc-green-700);
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
}

.gc-button {
	min-height: 52px;
	padding: 0 25px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 22px;
	border: 0;
	border-radius: 28px;
	background: var(--gc-green-800);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: .22s ease;
}

.gc-button:hover {
	background: var(--gc-green-600);
	transform: translateY(-2px);
	box-shadow: 0 12px 30px rgba(9, 102, 65, .18);
}

.gc-button--secondary {
	border: 1px solid var(--gc-line);
	background: rgba(255, 255, 255, .72);
	color: var(--gc-green-900);
}

.gc-button--secondary:hover {
	background: #fff;
	color: var(--gc-green-700);
}

.gc-button--light {
	background: #fff;
	color: var(--gc-green-900);
}

.gc-button--outline-light {
	border: 1px solid rgba(255, 255, 255, .34);
	background: transparent;
	color: #fff;
}

.gc-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.gc-hero {
	position: relative;
	min-height: 690px;
	overflow: hidden;
	background:
		radial-gradient(circle at 77% 40%, rgba(123, 196, 92, .14), transparent 25%),
		linear-gradient(120deg, #fbfdf9 0%, #f3f8f2 54%, #e9f4ec 100%);
}

.gc-hero__grid {
	position: absolute;
	inset: 0;
	opacity: .45;
	background-image:
		linear-gradient(rgba(20, 105, 66, .045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(20, 105, 66, .045) 1px, transparent 1px);
	background-size: 40px 40px;
	mask-image: linear-gradient(to right, #000, transparent 75%);
}

.gc-hero__inner {
	position: relative;
	min-height: 690px;
	display: grid;
	grid-template-columns: 1.03fr .97fr;
	align-items: center;
	gap: 5vw;
}

.gc-kicker {
	width: max-content;
	max-width: 100%;
	margin-bottom: 28px;
	padding: 9px 14px;
	display: flex;
	align-items: center;
	gap: 9px;
	border: 1px solid rgba(15, 116, 72, .13);
	border-radius: 22px;
	background: rgba(255, 255, 255, .7);
	color: var(--gc-green-700);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .06em;
}

.gc-kicker i {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--gc-lime);
	box-shadow: 0 0 0 5px rgba(132, 189, 53, .13);
}

.gc-hero h1 {
	margin: 0;
	font-family: "Noto Serif SC", "Songti SC", serif;
	font-size: clamp(50px, 5.4vw, 78px);
	font-weight: 700;
	line-height: 1.14;
	letter-spacing: -.04em;
}

.gc-hero h1 em {
	color: var(--gc-green-700);
	font-style: normal;
}

.gc-hero__copy > p {
	max-width: 580px;
	margin: 28px 0 34px;
	color: #52675e;
	font-size: 18px;
	line-height: 1.9;
}

.gc-hero__trust {
	margin-top: 52px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-top: 1px solid var(--gc-line);
}

.gc-hero__trust div {
	padding: 20px 18px 0 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
	border-right: 1px solid var(--gc-line);
}

.gc-hero__trust div + div {
	padding-left: 18px;
}

.gc-hero__trust div:last-child {
	border-right: 0;
}

.gc-hero__trust b {
	color: var(--gc-green-800);
	font-size: 13px;
}

.gc-hero__trust span {
	color: var(--gc-muted);
	font-size: 12px;
}

.gc-hero__stage {
	position: relative;
	min-height: 510px;
	display: grid;
	place-items: center;
}

.gc-stage-ring {
	position: absolute;
	border: 1px solid rgba(20, 126, 76, .18);
	border-radius: 50%;
}

.gc-stage-ring--one {
	width: 430px;
	height: 430px;
}

.gc-stage-ring--two {
	width: 340px;
	height: 340px;
	border-style: dashed;
	animation: gc-spin 38s linear infinite;
}

@keyframes gc-spin {
	to { transform: rotate(360deg); }
}

.gc-hero__logo-card {
	position: relative;
	z-index: 2;
	width: min(330px, 70%);
	aspect-ratio: 1;
	padding: 35px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, .8);
	border-radius: 34% 66% 61% 39% / 42% 42% 58% 58%;
	background: rgba(255, 255, 255, .82);
	box-shadow: var(--gc-shadow);
	backdrop-filter: blur(12px);
}

.gc-hero__logo-card small {
	margin-bottom: 18px;
	color: var(--gc-green-700);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .15em;
}

.gc-hero__logo-card img {
	width: 78%;
}

.gc-floating-note {
	position: absolute;
	z-index: 3;
	min-width: 200px;
	padding: 15px 17px;
	display: flex;
	flex-direction: column;
	gap: 2px;
	border: 1px solid rgba(255, 255, 255, .8);
	border-radius: 14px;
	background: rgba(255, 255, 255, .88);
	box-shadow: 0 15px 38px rgba(15, 69, 47, .1);
	backdrop-filter: blur(12px);
}

.gc-floating-note b {
	color: var(--gc-green-700);
	font-size: 11px;
}

.gc-floating-note span {
	color: #4f635a;
	font-size: 12px;
}

.gc-floating-note--one {
	top: 70px;
	right: -10px;
}

.gc-floating-note--two {
	bottom: 65px;
	left: -35px;
}

.gc-intro-strip {
	background: var(--gc-green-950);
	color: #fff;
}

.gc-intro-strip .gc-container {
	min-height: 138px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.gc-intro-strip p {
	max-width: 970px;
	margin: 0;
	font-family: "Noto Serif SC", serif;
	font-size: clamp(20px, 2.1vw, 30px);
	line-height: 1.6;
}

.gc-intro-strip strong {
	color: #b7ebc5;
}

.gc-intro-strip .gc-container > span {
	font-family: "Noto Serif SC", serif;
	font-size: 55px;
	opacity: .25;
}

.gc-knowledge-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.gc-knowledge-card {
	position: relative;
	min-height: 410px;
	padding: 27px;
	overflow: hidden;
	border: 1px solid var(--gc-line);
	border-radius: 22px;
	background: #fff;
	transition: .25s ease;
}

.gc-knowledge-card:hover {
	transform: translateY(-7px);
	border-color: rgba(10, 123, 75, .28);
	box-shadow: var(--gc-shadow);
}

.gc-knowledge-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.gc-knowledge-card__top span {
	color: var(--gc-green-700);
	font-weight: 800;
}

.gc-knowledge-card__top small {
	color: #91a098;
	font-size: 9px;
	letter-spacing: .12em;
}

.gc-knowledge-card__symbol {
	position: relative;
	width: 105px;
	height: 105px;
	margin: 35px 0 30px;
	display: grid;
	place-items: center;
}

.gc-knowledge-card__symbol i {
	position: absolute;
	inset: 0;
	border: 1px solid rgba(10, 123, 75, .2);
	border-radius: 44% 56% 67% 33% / 47% 46% 54% 53%;
	transform: rotate(14deg);
}

.gc-knowledge-card__symbol b {
	color: var(--gc-green-700);
	font-family: "Noto Serif SC", serif;
	font-size: 34px;
}

.gc-knowledge-card h3 {
	margin: 0 0 13px;
	font-family: "Noto Serif SC", serif;
	font-size: 24px;
}

.gc-knowledge-card > p {
	margin: 0 0 20px;
	color: var(--gc-muted);
	font-size: 14px;
}

.gc-knowledge-card > small {
	color: #7b8d84;
	font-size: 11px;
}

.gc-card-arrow {
	position: absolute;
	right: 24px;
	bottom: 22px;
	color: var(--gc-green-700);
	font-size: 20px;
}

.gc-diabetes {
	padding: 105px 0;
	overflow: hidden;
	background:
		radial-gradient(circle at 9% 85%, rgba(110, 206, 132, .14), transparent 24%),
		var(--gc-green-950);
	color: #fff;
}

.gc-diabetes__grid {
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	gap: 8vw;
	align-items: center;
}

.gc-big-index {
	display: block;
	margin: 5px 0 12px;
	color: rgba(255, 255, 255, .13);
	font-family: serif;
	font-size: 90px;
	line-height: .8;
}

.gc-diabetes h2,
.gc-research-preview h2,
.gc-home-cta h2,
.gc-evidence h2 {
	margin: 0;
	font-family: "Noto Serif SC", serif;
	font-size: clamp(34px, 3.7vw, 52px);
	line-height: 1.35;
}

.gc-diabetes__grid > div:first-child > p:not(.gc-eyebrow) {
	margin: 25px 0 32px;
	color: rgba(255, 255, 255, .7);
}

.gc-topic-path {
	border-top: 1px solid rgba(255, 255, 255, .15);
}

.gc-topic-path a {
	min-height: 78px;
	display: grid;
	grid-template-columns: 50px 65px 1fr auto;
	align-items: center;
	gap: 16px;
	border-bottom: 1px solid rgba(255, 255, 255, .15);
	transition: .2s ease;
}

.gc-topic-path a:hover {
	padding-inline: 15px;
	background: rgba(255, 255, 255, .06);
}

.gc-topic-path span,
.gc-topic-path small {
	color: rgba(255, 255, 255, .45);
}

.gc-topic-path b {
	font-size: 18px;
}

.gc-topic-path i {
	font-style: normal;
	color: #aee8bf;
}

.gc-article-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.gc-article-card {
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--gc-line);
	border-radius: 22px;
	background: #fff;
	transition: .25s ease;
}

.gc-article-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--gc-shadow);
}

.gc-article-card[hidden] {
	display: none;
}

.gc-article-card__visual {
	position: relative;
	height: 210px;
	display: block;
	overflow: hidden;
	background:
		radial-gradient(circle at 70% 30%, rgba(255, 255, 255, .85), transparent 26%),
		linear-gradient(140deg, #e6f4e9, #cfe8d7);
}

.gc-article-card__visual::before,
.gc-article-card__visual i {
	content: "";
	position: absolute;
	border: 1px solid rgba(10, 123, 75, .2);
	border-radius: 50%;
}

.gc-article-card__visual::before {
	width: 185px;
	height: 185px;
	right: -25px;
	bottom: -70px;
}

.gc-article-card__visual i {
	width: 110px;
	height: 110px;
	top: 46px;
	right: 55px;
	border-style: dashed;
}

.gc-article-card__visual > span {
	position: absolute;
	z-index: 2;
	top: 18px;
	left: 18px;
	padding: 6px 10px;
	border-radius: 14px;
	background: rgba(255, 255, 255, .8);
	color: var(--gc-green-700);
	font-size: 11px;
	font-weight: 700;
}

.gc-article-card__visual b {
	position: absolute;
	z-index: 2;
	top: 50%;
	right: 93px;
	color: var(--gc-green-700);
	font-family: "Noto Serif SC", serif;
	font-size: 40px;
	transform: translate(50%, -50%);
}

.gc-article-card__body {
	padding: 24px;
}

.gc-article-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #87958e;
	font-size: 11px;
}

.gc-article-card h2 {
	margin: 14px 0 11px;
	font-family: "Noto Serif SC", serif;
	font-size: 22px;
	line-height: 1.45;
}

.gc-article-card h2 a:hover {
	color: var(--gc-green-700);
}

.gc-article-card__body > p {
	min-height: 75px;
	margin: 0 0 19px;
	color: var(--gc-muted);
	font-size: 14px;
}

.gc-service-list {
	border-top: 1px solid var(--gc-line);
}

.gc-service-list > a {
	min-height: 105px;
	display: grid;
	grid-template-columns: 70px 280px 1fr auto;
	align-items: center;
	gap: 30px;
	border-bottom: 1px solid var(--gc-line);
	transition: .2s ease;
}

.gc-service-list > a:hover {
	padding-inline: 20px;
	background: var(--gc-soft);
}

.gc-service-list > a > span {
	color: var(--gc-green-700);
	font-weight: 800;
}

.gc-service-list h3 {
	margin: 0;
	font-family: "Noto Serif SC", serif;
	font-size: 22px;
}

.gc-service-list p {
	margin: 0;
	color: var(--gc-muted);
}

.gc-service-list i {
	font-style: normal;
	color: var(--gc-green-700);
}

.gc-research-preview {
	background: var(--gc-soft);
}

.gc-research-preview__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8vw;
	align-items: center;
}

.gc-research-visual {
	position: relative;
	min-height: 440px;
	display: grid;
	place-items: center;
	border-radius: var(--gc-radius);
	background: var(--gc-green-950);
	color: #fff;
	overflow: hidden;
}

.gc-research-visual::before,
.gc-research-visual i {
	content: "";
	position: absolute;
	width: 310px;
	height: 310px;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 50%;
}

.gc-research-visual i {
	width: 220px;
	height: 220px;
	border-style: dashed;
}

.gc-research-visual small {
	position: absolute;
	top: 30px;
	left: 30px;
	color: #aee8bf;
	letter-spacing: .13em;
}

.gc-research-visual b {
	position: relative;
	z-index: 2;
	font-family: "Noto Serif SC", serif;
	font-size: 82px;
}

.gc-research-visual span {
	position: absolute;
	padding: 7px 14px;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 18px;
	background: rgba(255, 255, 255, .08);
	font-size: 12px;
}

.gc-research-visual span:nth-of-type(1) { top: 110px; right: 45px; }
.gc-research-visual span:nth-of-type(2) { bottom: 65px; left: 70px; }
.gc-research-visual span:nth-of-type(3) { right: 68px; bottom: 95px; }

.gc-research-preview__grid > div:last-child > p:not(.gc-eyebrow) {
	margin: 25px 0;
	color: var(--gc-muted);
}

.gc-equation {
	margin: 0 0 30px;
	padding: 17px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-radius: 12px;
	background: #fff;
	font-size: 14px;
}

.gc-equation b {
	color: var(--gc-gold);
	font-size: 25px;
}

.gc-trust-flow {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	border: 1px solid var(--gc-line);
	border-radius: 20px;
	overflow: hidden;
}

.gc-trust-flow > div {
	min-height: 190px;
	padding: 25px;
	border-right: 1px solid var(--gc-line);
}

.gc-trust-flow > div:last-child {
	border-right: 0;
}

.gc-trust-flow span {
	color: var(--gc-green-700);
	font-size: 12px;
	font-weight: 800;
}

.gc-trust-flow h3 {
	margin: 24px 0 10px;
	font-family: "Noto Serif SC", serif;
}

.gc-trust-flow p {
	margin: 0;
	color: var(--gc-muted);
	font-size: 13px;
}

.gc-home-cta {
	padding: 78px 0;
	background: linear-gradient(115deg, var(--gc-green-950), #087044);
	color: #fff;
}

.gc-home-cta .gc-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.gc-home-cta p:not(.gc-eyebrow) {
	margin: 12px 0 0;
	color: rgba(255, 255, 255, .68);
}

.gc-page-hero {
	position: relative;
	padding: 110px 0 100px;
	overflow: hidden;
	background:
		radial-gradient(circle at 86% 35%, rgba(67, 171, 97, .13), transparent 25%),
		linear-gradient(120deg, #f7fbf6, #edf5ee);
}

.gc-page-hero__inner {
	display: grid;
	grid-template-columns: 1fr 250px;
	align-items: center;
	gap: 50px;
}

.gc-page-hero h1 {
	max-width: 900px;
	margin: 0;
	font-family: "Noto Serif SC", serif;
	font-size: clamp(42px, 5vw, 68px);
	line-height: 1.25;
	letter-spacing: -.03em;
}

.gc-page-hero__inner > div:first-child > p:last-child {
	max-width: 760px;
	margin: 25px 0 0;
	color: var(--gc-muted);
	font-size: 18px;
}

.gc-page-hero__symbol {
	position: relative;
	width: 210px;
	height: 210px;
	display: grid;
	place-items: center;
	justify-self: end;
}

.gc-page-hero__symbol::before,
.gc-page-hero__symbol i {
	content: "";
	position: absolute;
	inset: 0;
	border: 1px solid rgba(10, 123, 75, .18);
	border-radius: 45% 55% 65% 35% / 45% 39% 61% 55%;
}

.gc-page-hero__symbol i {
	inset: 20px;
	border-style: dashed;
	transform: rotate(25deg);
}

.gc-page-hero__symbol span {
	color: var(--gc-green-700);
	font-family: "Noto Serif SC", serif;
	font-size: 65px;
}

.gc-about-intro {
	display: grid;
	grid-template-columns: .85fr 1.15fr;
	gap: 9vw;
}

.gc-about-intro h2,
.gc-brand-story h2,
.gc-contact-grid h2 {
	margin: 0;
	font-family: "Noto Serif SC", serif;
	font-size: clamp(34px, 4vw, 52px);
	line-height: 1.35;
}

.gc-about-intro p,
.gc-brand-story p {
	color: var(--gc-muted);
}

.gc-about-intro .gc-lead {
	margin-top: 0;
	color: var(--gc-ink);
	font-family: "Noto Serif SC", serif;
	font-size: 24px;
}

.gc-value-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.gc-value-grid > div {
	min-height: 250px;
	padding: 28px;
	border-radius: 20px;
	background: #fff;
}

.gc-value-grid span,
.gc-process-grid span {
	color: var(--gc-green-700);
	font-size: 12px;
	font-weight: 800;
}

.gc-value-grid h3 {
	margin: 45px 0 12px;
	font-family: "Noto Serif SC", serif;
	font-size: 27px;
}

.gc-value-grid p {
	margin: 0;
	color: var(--gc-muted);
	font-size: 14px;
}

.gc-brand-story {
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	align-items: center;
	gap: 8vw;
}

.gc-brand-story__visual {
	min-height: 420px;
	padding: 70px;
	display: grid;
	place-items: center;
	border-radius: var(--gc-radius);
	background: var(--gc-soft);
}

.gc-brand-story__visual img {
	max-width: 300px;
}

.gc-quote {
	margin-top: 28px;
	padding: 20px 24px;
	border-left: 3px solid var(--gc-green-700);
	background: var(--gc-soft);
	font-family: "Noto Serif SC", serif;
	font-size: 20px;
}

.gc-trust-system {
	background: var(--gc-green-950);
	color: #fff;
}

.gc-process-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 1px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 18px;
	background: rgba(255, 255, 255, .14);
}

.gc-process-grid > div {
	min-height: 150px;
	padding: 22px;
	display: flex;
	flex-direction: column;
	gap: 22px;
	background: rgba(255, 255, 255, .04);
}

.gc-section--soft .gc-process-grid {
	border-color: var(--gc-line);
	background: var(--gc-line);
}

.gc-section--soft .gc-process-grid > div {
	background: #fff;
}

.gc-process-grid b {
	font-family: "Noto Serif SC", serif;
	font-size: 17px;
}

.gc-process-grid p {
	margin: 0;
	color: rgba(255, 255, 255, .65);
	font-size: 12px;
}

.gc-service-details > article {
	padding: 55px 0;
	display: grid;
	grid-template-columns: 100px minmax(0, 1fr) 320px;
	gap: 50px;
	border-bottom: 1px solid var(--gc-line);
}

.gc-service-details > article:first-child {
	padding-top: 0;
}

.gc-service-details__num {
	color: rgba(10, 123, 75, .18);
	font-family: serif;
	font-size: 70px;
	line-height: 1;
}

.gc-service-details h2 {
	margin: 0 0 18px;
	font-family: "Noto Serif SC", serif;
	font-size: 35px;
}

.gc-service-details article > div:nth-child(2) > p:not(.gc-eyebrow) {
	color: var(--gc-muted);
}

.gc-audience {
	margin-top: 28px;
	display: flex;
	align-items: center;
	gap: 18px;
}

.gc-audience span,
.gc-delivery-title {
	color: #83928b;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .08em;
}

.gc-delivery {
	margin: 10px 0;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
}

.gc-delivery i {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--gc-lime);
}

.gc-boundary {
	margin-top: 42px;
	padding: 24px 28px;
	display: grid;
	grid-template-columns: 130px 1fr;
	gap: 25px;
	border: 1px solid rgba(211, 154, 73, .25);
	border-radius: 14px;
	background: #fffaf2;
}

.gc-boundary b {
	color: #a46a21;
}

.gc-boundary p {
	margin: 0;
	color: #79654e;
}

.gc-filter-bar {
	position: sticky;
	z-index: 70;
	top: 78px;
	border-bottom: 1px solid var(--gc-line);
	background: rgba(255, 255, 255, .95);
	backdrop-filter: blur(15px);
}

.gc-filter-bar .gc-container {
	min-height: 70px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.gc-filter-tabs {
	display: flex;
	gap: 7px;
	overflow-x: auto;
	scrollbar-width: none;
}

.gc-filter-tabs::-webkit-scrollbar {
	display: none;
}

.gc-filter-tabs button {
	padding: 8px 16px;
	border: 0;
	border-radius: 20px;
	background: transparent;
	white-space: nowrap;
	cursor: pointer;
}

.gc-filter-tabs button:hover,
.gc-filter-tabs button.is-active {
	background: var(--gc-green-800);
	color: #fff;
}

.gc-filter-bar .gc-container > span {
	color: #8a978f;
	font-size: 12px;
	white-space: nowrap;
}

.gc-featured-answer {
	margin-bottom: 48px;
	padding: 38px;
	display: grid;
	grid-template-columns: 95px 1fr 100px;
	gap: 30px;
	align-items: center;
	border-radius: var(--gc-radius);
	background: var(--gc-green-950);
	color: #fff;
}

.gc-featured-answer > span {
	padding: 8px 10px;
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 18px;
	font-size: 11px;
	text-align: center;
}

.gc-featured-answer small {
	color: #aee8bf;
}

.gc-featured-answer h2 {
	margin: 8px 0;
	font-family: "Noto Serif SC", serif;
	font-size: 31px;
}

.gc-featured-answer p {
	margin: 0;
	color: rgba(255, 255, 255, .7);
}

.gc-featured-answer a {
	display: inline-block;
	margin-top: 16px;
	color: #b7ebc5;
	font-weight: 700;
}

.gc-featured-answer > b {
	justify-self: end;
	color: rgba(255, 255, 255, .12);
	font-family: serif;
	font-size: 75px;
}

.gc-filter-empty,
.gc-empty-state {
	grid-column: 1 / -1;
	padding: 60px 20px;
	border-radius: 18px;
	background: var(--gc-soft);
	text-align: center;
}

.gc-question-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.gc-question-grid > div {
	min-height: 155px;
	padding: 25px;
	border: 1px solid var(--gc-line);
	border-radius: 18px;
	background: #fff;
}

.gc-question-grid span {
	color: var(--gc-green-700);
	font-size: 12px;
	font-weight: 800;
}

.gc-question-grid h3 {
	margin: 26px 0 0;
	font-family: "Noto Serif SC", serif;
	font-size: 22px;
}

.gc-evidence {
	padding: 100px 0;
	background: var(--gc-green-950);
	color: #fff;
}

.gc-evidence__grid {
	display: grid;
	grid-template-columns: .85fr 1.15fr;
	gap: 8vw;
	align-items: center;
}

.gc-evidence__grid > div:first-child > p:last-child {
	color: rgba(255, 255, 255, .65);
}

.gc-ladder {
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

.gc-ladder > div {
	min-height: 66px;
	margin-inline: auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: 45px 180px 1fr;
	align-items: center;
	border-bottom: 1px solid rgba(255, 255, 255, .13);
	background: rgba(255, 255, 255, .04);
}

.gc-ladder > div:nth-child(1) { width: 100%; }
.gc-ladder > div:nth-child(2) { width: 92%; }
.gc-ladder > div:nth-child(3) { width: 84%; }
.gc-ladder > div:nth-child(4) { width: 76%; }
.gc-ladder > div:nth-child(5) { width: 68%; }

.gc-ladder span {
	color: #aee8bf;
	font-size: 11px;
}

.gc-ladder small {
	color: rgba(255, 255, 255, .55);
}

.gc-topic-hero {
	padding: 75px 0;
	background: var(--gc-green-950);
	color: #fff;
}

.gc-topic-hero .gc-container {
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: 8vw;
	align-items: center;
}

.gc-topic-hero h2 {
	margin: 16px 0;
	font-family: "Noto Serif SC", serif;
	font-size: 46px;
}

.gc-topic-hero p {
	max-width: 690px;
	color: rgba(255, 255, 255, .68);
}

.gc-topic-hero > .gc-container > div:first-child > span {
	padding: 7px 12px;
	border-radius: 18px;
	background: rgba(255, 255, 255, .1);
	color: #b7ebc5;
	font-size: 12px;
}

.gc-topic-stats {
	margin-top: 30px;
	display: flex;
	gap: 40px;
}

.gc-topic-stats div {
	display: flex;
	flex-direction: column;
}

.gc-topic-stats b {
	font-size: 28px;
}

.gc-topic-stats span {
	color: rgba(255, 255, 255, .5);
	font-size: 11px;
}

.gc-topic-core {
	position: relative;
	width: 290px;
	height: 290px;
	display: grid;
	place-items: center;
	justify-self: end;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 50%;
}

.gc-topic-core::before {
	content: "";
	position: absolute;
	inset: 38px;
	border: 1px dashed rgba(255, 255, 255, .25);
	border-radius: 50%;
}

.gc-topic-core b {
	position: relative;
	z-index: 2;
	font-family: "Noto Serif SC", serif;
	font-size: 55px;
}

.gc-topic-core span,
.gc-topic-core i {
	position: absolute;
	font-style: normal;
	color: #b7ebc5;
}

.gc-topic-core span { top: 40px; }
.gc-topic-core i { bottom: 40px; }

.gc-roadmap article {
	position: relative;
	min-height: 200px;
	display: grid;
	grid-template-columns: 100px 1fr 1fr;
	gap: 50px;
	align-items: center;
	border-bottom: 1px solid var(--gc-line);
}

.gc-roadmap__num {
	color: rgba(10, 123, 75, .19);
	font-family: serif;
	font-size: 65px;
}

.gc-roadmap article small {
	color: var(--gc-green-700);
	font-weight: 800;
	letter-spacing: .12em;
}

.gc-roadmap h2 {
	margin: 5px 0;
	font-family: "Noto Serif SC", serif;
	font-size: 30px;
}

.gc-roadmap p {
	margin: 0;
	color: var(--gc-muted);
}

.gc-roadmap article > div:last-child {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.gc-roadmap article > div:last-child span {
	padding: 7px 12px;
	border-radius: 18px;
	background: var(--gc-soft);
	font-size: 12px;
}

.gc-case-note {
	margin-bottom: 35px;
	padding: 18px 24px;
	display: flex;
	gap: 25px;
	border-radius: 12px;
	background: #fffaf2;
	color: #79654e;
}

.gc-case-note b {
	color: #a46a21;
}

.gc-case-list {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.gc-case-list article {
	padding: 24px;
	display: grid;
	grid-template-columns: 260px 1fr 220px;
	gap: 40px;
	align-items: center;
	border: 1px solid var(--gc-line);
	border-radius: 22px;
}

.gc-case-visual {
	position: relative;
	min-height: 190px;
	padding: 20px;
	overflow: hidden;
	border-radius: 16px;
	background: linear-gradient(145deg, #e3f2e6, #bcdcc7);
}

.gc-case-visual span {
	padding: 5px 9px;
	border-radius: 12px;
	background: rgba(255, 255, 255, .75);
	font-size: 11px;
}

.gc-case-visual b {
	position: absolute;
	right: 20px;
	bottom: 0;
	color: rgba(7, 81, 55, .13);
	font-family: serif;
	font-size: 95px;
}

.gc-case-list h2 {
	margin: 8px 0;
	font-family: "Noto Serif SC", serif;
	font-size: 28px;
}

.gc-case-list article > div:nth-child(2) > small {
	color: var(--gc-green-700);
	font-weight: 700;
}

.gc-case-list article > div:nth-child(2) > p {
	color: var(--gc-muted);
}

.gc-case-tags {
	color: #809087;
	font-size: 12px;
}

.gc-case-stat {
	padding-left: 25px;
	display: flex;
	flex-direction: column;
	gap: 13px;
	border-left: 1px solid var(--gc-line);
}

.gc-case-stat small {
	color: #87958e;
}

.gc-case-stat b {
	font-family: "Noto Serif SC", serif;
}

.gc-case-stat a {
	color: var(--gc-green-700);
	font-size: 13px;
	font-weight: 700;
}

.gc-contact-grid {
	display: grid;
	grid-template-columns: .8fr 1.2fr;
	gap: 8vw;
	align-items: start;
}

.gc-contact-directions {
	margin-top: 35px;
	border-top: 1px solid var(--gc-line);
}

.gc-contact-directions > div {
	min-height: 65px;
	display: flex;
	align-items: center;
	gap: 20px;
	border-bottom: 1px solid var(--gc-line);
}

.gc-contact-directions span {
	color: var(--gc-green-700);
	font-size: 11px;
}

.gc-contact-form {
	padding: 42px;
	border: 1px solid var(--gc-line);
	border-radius: 24px;
	background: var(--gc-soft);
}

.gc-contact-form__title {
	margin-bottom: 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.gc-contact-form__title span {
	font-family: "Noto Serif SC", serif;
	font-size: 28px;
	font-weight: 700;
}

.gc-contact-form__title small {
	color: #8a9890;
	font-size: 9px;
	letter-spacing: .14em;
}

.gc-contact-form > label {
	margin-bottom: 18px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.gc-contact-form > label > span {
	font-size: 13px;
	font-weight: 700;
}

.gc-contact-form input,
.gc-contact-form select,
.gc-contact-form textarea,
.gc-search-form input,

.gc-contact-form input,
.gc-contact-form select {
	height: 50px;
	padding: 0 15px;
}

.gc-contact-form textarea {
	padding: 14px 15px;
	resize: vertical;
}

.gc-contact-form input:focus,
.gc-contact-form select:focus,
.gc-contact-form textarea:focus,
.gc-search-form input:focus {
	border-color: var(--gc-green-600);
	box-shadow: 0 0 0 3px rgba(22, 148, 88, .1);
}

.gc-contact-form .gc-consent {
	display: grid;
	grid-template-columns: 18px 1fr;
	align-items: start;
}

.gc-consent input {
	width: 16px;
	height: 16px;
	margin-top: 3px;
}

.gc-consent span {
	color: var(--gc-muted);
	font-size: 12px !important;
	font-weight: 400 !important;
}

.gc-form-notice {
	margin-bottom: 20px;
	padding: 14px 16px;
	display: flex;
	flex-direction: column;
	border-radius: 10px;
}

.gc-form-notice--success {
	background: #e7f5ea;
	color: #14613e;
}

.gc-form-notice--error {
	background: #fff1e8;
	color: #9a4d20;
}

.gc-faq {
	background: var(--gc-soft);
}

.gc-faq__grid {
	display: grid;
	grid-template-columns: .65fr 1.35fr;
	gap: 8vw;
}

.gc-faq__grid > div:first-child h2 {
	margin: 0;
	font-family: "Noto Serif SC", serif;
	font-size: 42px;
}

.gc-faq__grid > div:first-child > p:last-child {
	color: var(--gc-muted);
}

.gc-faq-item {
	border-bottom: 1px solid var(--gc-line);
}

.gc-faq-item button {
	width: 100%;
	min-height: 80px;
	padding: 0;
	display: grid;
	grid-template-columns: 45px 1fr auto;
	align-items: center;
	gap: 15px;
	border: 0;
	background: transparent;
	text-align: left;
	cursor: pointer;
}

.gc-faq-item button span {
	color: var(--gc-green-700);
	font-size: 11px;
}

.gc-faq-item button b {
	font-size: 16px;
}

.gc-faq-item button i {
	font-size: 22px;
	font-style: normal;
}

.gc-faq-item > p {
	max-height: 0;
	margin: 0;
	padding: 0 50px 0 60px;
	overflow: hidden;
	color: var(--gc-muted);
	opacity: 0;
	transition: .25s ease;
}

.gc-faq-item.is-open > p {
	max-height: 200px;
	padding-bottom: 25px;
	opacity: 1;
}

.gc-single__hero {
	padding: 80px 0 65px;
	background: linear-gradient(120deg, #f7fbf6, #edf5ee);
}

.gc-single__crumb {
	margin-bottom: 35px;
	color: #809087;
	font-size: 12px;
}

.gc-single__crumb span {
	margin: 0 8px;
}

.gc-single__category {
	padding: 6px 10px;
	border-radius: 14px;
	background: #fff;
	color: var(--gc-green-700);
	font-size: 11px;
	font-weight: 700;
}

.gc-single__hero h1 {
	max-width: 930px;
	margin: 20px 0;
	font-family: "Noto Serif SC", serif;
	font-size: clamp(38px, 5vw, 64px);
	line-height: 1.3;
}

.gc-single__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	color: #7d8c84;
	font-size: 12px;
}

.gc-single__layout {
	padding-top: 70px;
	padding-bottom: 100px;
	display: grid;
	grid-template-columns: minmax(0, 780px) 290px;
	gap: 75px;
	align-items: start;
}

.gc-core-answer {
	margin-bottom: 42px;
	padding: 25px;
	border-left: 4px solid var(--gc-green-700);
	background: var(--gc-soft);
}

.gc-core-answer b {
	color: var(--gc-green-700);
}

.gc-core-answer p {
	margin: 8px 0 0;
	font-family: "Noto Serif SC", serif;
	font-size: 20px;
}

.gc-entry {
	color: #304d41;
	font-size: 17px;
	line-height: 2;
}

.gc-entry h2,
.gc-entry h3 {
	margin: 2.2em 0 .7em;
	color: var(--gc-ink);
	font-family: "Noto Serif SC", serif;
	line-height: 1.45;
}

.gc-entry h2 {
	font-size: 30px;
}

.gc-entry h3 {
	font-size: 23px;
}

.gc-entry a {
	color: var(--gc-green-700);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.gc-entry img {
	border-radius: 18px;
}

.gc-entry--page {
	max-width: 860px;
}

.gc-source-box,
.gc-disclaimer {
	margin-top: 35px;
	padding: 22px 24px;
	border-radius: 12px;
}

.gc-source-box {
	background: var(--gc-soft);
}

.gc-source-box p {
	margin: 7px 0 0;
	color: var(--gc-muted);
}

.gc-disclaimer {
	border: 1px solid rgba(211, 154, 73, .25);
	background: #fffaf2;
	color: #79654e;
	font-size: 13px;
}

.gc-tags {
	margin-top: 25px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.gc-tags a {
	padding: 6px 10px;
	border-radius: 16px;
	background: var(--gc-soft);
	color: var(--gc-green-700);
	font-size: 12px;
}

.gc-single__aside {
	position: sticky;
	top: 110px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.gc-single__aside > div {
	padding: 23px;
	border: 1px solid var(--gc-line);
	border-radius: 16px;
}

.gc-single__aside > div > span {
	display: block;
	margin-bottom: 17px;
	color: var(--gc-green-700);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .1em;
}

.gc-single__aside p {
	margin: 10px 0;
	color: var(--gc-muted);
	font-size: 12px;
}

.gc-single__aside p b {
	display: block;
	color: var(--gc-ink);
}

.pagination,
.nav-links {
	margin-top: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
}

.page-numbers {
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	display: grid;
	place-items: center;
	border: 1px solid var(--gc-line);
	border-radius: 20px;
}

.page-numbers.current,
.page-numbers:hover {
	background: var(--gc-green-800);
	color: #fff;
}

.gc-search-form {
	width: min(820px, 100%);
	min-height: 68px;
	padding: 8px 10px 8px 22px;
	display: grid;
	grid-template-columns: 22px 1fr auto;
	align-items: center;
	gap: 14px;
	border: 1px solid var(--gc-line);
	border-radius: 35px;
	background: #fff;
}

.gc-search-form input {
	height: 50px;
	padding: 0;
	border: 0;
	background: transparent;
}

.gc-search-form input:focus {
	box-shadow: none;
}

.gc-search-form button {
	height: 48px;
	padding: 0 23px;
	border: 0;
	border-radius: 24px;
	background: var(--gc-green-800);
	color: #fff;
	cursor: pointer;
}

.gc-search-count {
	margin: 25px 0;
	color: var(--gc-muted);
	font-size: 13px;
}

.gc-search-overlay {
	position: fixed;
	z-index: 200;
	inset: 0;
	padding-top: 60px;
	background: rgba(244, 249, 244, .98);
	opacity: 0;
	transform: translateY(-12px);
	transition: .22s ease;
}

.gc-search-overlay.is-open {
	opacity: 1;
	transform: translateY(0);
}

.gc-search-overlay__top {
	margin-bottom: 65px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.gc-search-overlay__top button {
	border: 0;
	background: transparent;
	cursor: pointer;
}

.gc-search-overlay .gc-search-form {
	width: 100%;
}

.gc-search-overlay__inner > p {
	color: var(--gc-muted);
}

.gc-search-overlay__inner > p a {
	margin-left: 12px;
	color: var(--gc-green-700);
	font-weight: 700;
}

.gc-404 {
	min-height: 70vh;
	display: grid;
	place-items: center;
	background: var(--gc-soft);
	text-align: center;
}

.gc-404 .gc-container {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.gc-404 .gc-container > span {
	color: rgba(10, 123, 75, .14);
	font-family: serif;
	font-size: 140px;
	line-height: 1;
}

.gc-404 h1 {
	margin: 5px 0;
	font-family: "Noto Serif SC", serif;
	font-size: 40px;
}

.gc-404 p {
	max-width: 600px;
	color: var(--gc-muted);
}

.gc-footer {
	padding: 70px 0 20px;
	background: #042f20;
	color: rgba(255, 255, 255, .7);
}

.gc-footer__grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr;
	gap: 55px;
}

.gc-brand--footer {
	color: #fff;
}

.gc-brand--footer .gc-brand__mark {
	background: rgba(255, 255, 255, .95);
}

.gc-brand--footer .gc-brand__copy small {
	color: rgba(255, 255, 255, .58);
}

.gc-footer__grid > div:first-child > p {
	max-width: 340px;
	margin-top: 20px;
	font-size: 13px;
}

.gc-footer h2 {
	margin: 0 0 20px;
	color: #fff;
	font-size: 14px;
}

.gc-footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.gc-footer li,
.gc-footer__grid > div:last-child > a,
.gc-footer__grid > div:last-child > p {
	display: block;
	margin: 9px 0;
	font-size: 12px;
}

.gc-footer-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.gc-footer-menu a:hover,
.gc-footer__grid > div:last-child > a:hover {
	color: #aee8bf;
}

.gc-footer__bottom {
	margin-top: 55px;
	padding-top: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid rgba(255, 255, 255, .11);
	font-size: 11px;
}

@media (max-width: 1180px) {
	:root {
		--gc-container: min(100% - 48px, 1080px);
	}

	.gc-header__inner {
		grid-template-columns: 205px 1fr auto;
		gap: 16px;
	}

	.gc-menu {
		gap: 13px;
	}

	.gc-menu a {
		font-size: 12px;
	}

	.gc-small-cta {
		display: none;
	}

	.gc-top-note {
		display: none;
	}

	.gc-hero__inner {
		gap: 30px;
	}

	.gc-floating-note--one {
		right: 0;
	}

	.gc-floating-note--two {
		left: 0;
	}

	.gc-knowledge-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.gc-knowledge-card {
		min-height: 360px;
	}

	.gc-process-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.gc-service-details > article {
		grid-template-columns: 80px 1fr 270px;
		gap: 30px;
	}

	.gc-case-list article {
		grid-template-columns: 220px 1fr;
	}

	.gc-case-stat {
		grid-column: 2;
		padding: 0;
		flex-direction: row;
		align-items: center;
		border-left: 0;
	}
}

@media (max-width: 960px) {
	:root {
		--gc-container: min(100% - 40px, 880px);
	}

	.gc-header {
		height: 72px;
		backdrop-filter: none;
	}

	.gc-filter-bar {
		top: 72px;
	}

	.gc-header__inner {
		grid-template-columns: 1fr auto;
	}

	.gc-menu-button {
		display: block;
	}

	.gc-nav {
		position: fixed;
		z-index: 89;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		height: auto;
		padding: 92px 20px 24px;
		overflow-y: auto;
		background: #f8fbf7;
		opacity: 0;
		pointer-events: none;
		transform: translateY(-12px);
		transition: .22s ease;
	}

	.admin-bar .gc-nav {
		top: 0;
		padding-top: 138px;
	}

	.gc-nav.is-open {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	/* 菜单打开时：header 固定浮在 nav 上方，确保汉堡 X 按钮可见可点 */
	body.gc-menu-open .gc-header {
		position: fixed !important;
		z-index: 100 !important;
		top: 0 !important;
		left: 0;
		right: 0;
		width: 100%;
		height: 72px !important;
		background: #fff;
		border-bottom: 1px solid var(--gc-line);
		box-shadow: 0 2px 12px rgba(0,0,0,.08);
	}

	body.gc-menu-open .gc-header__inner {
		display: flex !important;
		align-items: center;
		justify-content: space-between;
		padding: 0 16px;
	}

	body.gc-menu-open .gc-menu-button {
		z-index: 101;
		position: relative;
		width: 44px;
		height: 44px;
		border-color: var(--gc-green-700);
		background: #f0f7f2;
	}

	/* 导航浮层从 header 下方开始，不覆盖 header */
	body.gc-menu-open .gc-nav {
		top: 72px !important;
		height: calc(100vh - 72px) !important;
		padding-top: 20px !important;
	}

	.gc-menu {
		height: auto;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.gc-menu li,
	.gc-menu a {
		display: block;
	}

	.gc-menu a {
		padding: 16px 5px;
		border-bottom: 1px solid var(--gc-line);
		font-size: 17px;
	}

	.gc-menu a::after {
		display: none;
	}

	.gc-menu-button.is-open i:nth-child(1) {
		transform: translateY(5px) rotate(45deg);
	}

	.gc-menu-button.is-open i:nth-child(2) {
		opacity: 0;
	}

	.gc-menu-button.is-open i:nth-child(3) {
		transform: translateY(-5px) rotate(-45deg);
	}

	.gc-hero {
		min-height: auto;
	}

	.gc-hero__inner {
		min-height: auto;
		padding: 80px 0;
		grid-template-columns: 1fr;
	}

	.gc-hero__stage {
		min-height: 480px;
	}

	.gc-hero__copy {
		max-width: 720px;
	}

	.gc-diabetes__grid,
	.gc-research-preview__grid,
	.gc-about-intro,
	.gc-brand-story,
	.gc-evidence__grid,
	.gc-contact-grid,
	.gc-faq__grid {
		grid-template-columns: 1fr;
	}

	.gc-diabetes__grid,
	.gc-research-preview__grid,
	.gc-brand-story,
	.gc-evidence__grid,
	.gc-contact-grid,
	.gc-faq__grid {
		gap: 55px;
	}

	.gc-service-list > a {
		grid-template-columns: 55px 220px 1fr auto;
		gap: 18px;
	}

	.gc-trust-flow {
		grid-template-columns: repeat(3, 1fr);
	}

	.gc-trust-flow > div {
		border-bottom: 1px solid var(--gc-line);
	}

	.gc-home-cta .gc-container {
		align-items: flex-start;
		flex-direction: column;
	}

	.gc-page-hero__inner {
		grid-template-columns: 1fr 170px;
	}

	.gc-page-hero__symbol {
		width: 160px;
		height: 160px;
	}

	.gc-value-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.gc-service-details > article {
		grid-template-columns: 70px 1fr;
	}

	.gc-service-details > article > div:last-child {
		grid-column: 2;
	}

	.gc-topic-hero .gc-container {
		grid-template-columns: 1fr 250px;
		gap: 35px;
	}

	.gc-topic-core {
		width: 230px;
		height: 230px;
	}

	.gc-roadmap article {
		grid-template-columns: 75px 1fr;
		gap: 25px;
		padding: 30px 0;
	}

	.gc-roadmap article > div:last-child {
		grid-column: 2;
	}

	.gc-single__layout {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.gc-single__aside {
		position: static;
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.gc-footer__grid {
		grid-template-columns: 1.4fr 1fr 1fr;
	}

	.gc-footer__grid > div:last-child {
		grid-column: 1 / -1;
	}
}

@media (max-width: 782px) {
	.admin-bar .gc-header {
		top: 46px;
	}

	.admin-bar .gc-filter-bar {
		top: 118px;
	}
}

@media (max-width: 720px) {
	:root {
		--gc-container: calc(100% - 32px);
		--gc-radius: 20px;
	}

	body {
		font-size: 15px;
	}

	.gc-top-note {
		height: 28px;
	}

	.gc-top-note .gc-container span:last-child {
		display: none;
	}

	.gc-header {
		height: 66px;
	}

	body.gc-menu-open .gc-header {
		height: 66px !important;
	}

	body.gc-menu-open .gc-nav {
		top: 66px !important;
		height: calc(100vh - 66px) !important;
		padding-top: 16px !important;
	}

	.gc-nav {
		top: 0;
		padding-top: 86px;
	}

	.admin-bar .gc-nav {
		top: 0;
		padding-top: 132px;
	}

	.gc-brand__mark {
		width: 42px;
		height: 42px;
		flex-basis: 42px;
	}

	.gc-brand__mark img,
	.gc-brand__mark .custom-logo {
		width: 39px;
		height: 39px;
	}

	.gc-brand__copy strong {
		font-size: 17px;
	}

	.gc-brand__copy small {
		display: none;
	}

	.gc-icon-button,
	.gc-menu-button {
		width: 38px;
		height: 38px;
	}

	.gc-section {
		padding: 72px 0;
	}

	.gc-section-heading {
		margin-bottom: 30px;
		align-items: flex-start;
		flex-direction: column;
		gap: 15px;
	}

	.gc-section-heading h2 {
		font-size: 32px;
	}

	.gc-hero__inner {
		padding: 60px 0 45px;
	}

	.gc-hero h1 {
		font-size: clamp(42px, 13vw, 60px);
	}

	.gc-hero__copy > p {
		font-size: 16px;
	}

	.gc-hero__trust {
		margin-top: 38px;
	}

	.gc-hero__trust div {
		padding: 15px 8px 0 0;
	}

	.gc-hero__trust div + div {
		padding-left: 8px;
	}

	.gc-hero__stage {
		min-height: 380px;
	}

	.gc-stage-ring--one {
		width: 330px;
		height: 330px;
	}

	.gc-stage-ring--two {
		width: 265px;
		height: 265px;
	}

	.gc-hero__logo-card {
		width: 245px;
		padding: 28px;
	}

	.gc-floating-note {
		min-width: 165px;
		padding: 11px 13px;
	}

	.gc-floating-note--one {
		top: 30px;
		right: -8px;
	}

	.gc-floating-note--two {
		bottom: 25px;
		left: -8px;
	}

	.gc-intro-strip .gc-container {
		min-height: 125px;
	}

	.gc-intro-strip .gc-container > span {
		display: none;
	}

	.gc-knowledge-grid,
	.gc-article-grid,
	.gc-question-grid,
	.gc-value-grid {
		grid-template-columns: 1fr;
	}

	.gc-knowledge-card {
		min-height: 330px;
	}

	.gc-diabetes {
		padding: 75px 0;
	}

	.gc-topic-path a {
		grid-template-columns: 38px 55px 1fr auto;
		gap: 8px;
	}

	.gc-topic-path b {
		font-size: 15px;
	}

	.gc-service-list > a {
		padding: 24px 0;
		grid-template-columns: 38px 1fr auto;
		gap: 10px;
	}

	.gc-service-list h3 {
		font-size: 20px;
	}

	.gc-service-list p {
		grid-column: 2 / -1;
		font-size: 13px;
	}

	.gc-trust-flow {
		grid-template-columns: 1fr;
	}

	.gc-trust-flow > div {
		min-height: auto;
		padding: 22px;
		border-right: 0;
	}

	.gc-trust-flow h3 {
		margin-top: 12px;
	}

	.gc-page-hero {
		padding: 70px 0;
	}

	.gc-page-hero__inner {
		grid-template-columns: 1fr;
	}

	.gc-page-hero__symbol {
		display: none;
	}

	.gc-page-hero h1 {
		font-size: 39px;
	}

	.gc-page-hero__inner > div:first-child > p:last-child {
		font-size: 16px;
	}

	.gc-process-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.gc-service-details > article {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.gc-service-details__num {
		font-size: 48px;
	}

	.gc-service-details > article > div:last-child {
		grid-column: 1;
	}

	.gc-boundary {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.gc-filter-bar {
		top: 66px;
	}

	.gc-filter-bar .gc-container {
		min-height: 62px;
	}

	.gc-filter-bar .gc-container > span {
		display: none;
	}

	.gc-featured-answer {
		padding: 25px;
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.gc-featured-answer > span {
		width: max-content;
	}

	.gc-featured-answer > b {
		display: none;
	}

	.gc-featured-answer h2 {
		font-size: 25px;
	}

	.gc-ladder > div {
		width: 100% !important;
		grid-template-columns: 30px 1fr;
	}

	.gc-ladder small {
		grid-column: 2;
		padding-bottom: 10px;
	}

	.gc-topic-hero .gc-container {
		grid-template-columns: 1fr;
	}

	.gc-topic-core {
		display: none;
	}

	.gc-topic-stats {
		gap: 24px;
	}

	.gc-roadmap article {
		grid-template-columns: 55px 1fr;
	}

	.gc-roadmap__num {
		font-size: 46px;
	}

	.gc-case-note {
		flex-direction: column;
		gap: 5px;
	}

	.gc-case-list article {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.gc-case-stat {
		grid-column: 1;
		flex-direction: column;
		align-items: flex-start;
	}

	.gc-contact-form {
		padding: 25px 18px;
	}

	.gc-faq-item button {
		grid-template-columns: 30px 1fr auto;
	}

	.gc-faq-item > p {
		padding-inline: 45px 20px;
	}

	.gc-single__hero {
		padding: 55px 0 45px;
	}

	.gc-single__hero h1 {
		font-size: 38px;
	}

	.gc-single__layout {
		padding-top: 45px;
		padding-bottom: 70px;
	}

	.gc-entry {
		font-size: 16px;
	}

	.gc-single__aside {
		grid-template-columns: 1fr;
	}

	.gc-footer__grid {
		grid-template-columns: 1fr 1fr;
		gap: 35px 25px;
	}

	.gc-footer__grid > div:first-child,
	.gc-footer__grid > div:last-child {
		grid-column: 1 / -1;
	}

	.gc-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 6px;
	}

	.gc-search-overlay {
		padding-top: 25px;
	}

	.gc-search-overlay__top {
		margin-bottom: 35px;
	}

	.gc-search-form {
		grid-template-columns: 18px 1fr;
		border-radius: 15px;
	}

	.gc-search-form button {
		grid-column: 1 / -1;
	}

}

@media (max-width: 400px) {
	.gc-header__actions {
		gap: 6px;
	}

	.gc-brand {
		gap: 6px;
	}

	.gc-brand__copy strong {
		font-size: 15px;
	}

	.gc-hero__trust {
		grid-template-columns: 1fr;
	}

	.gc-hero__trust div,
	.gc-hero__trust div + div {
		padding: 11px 0;
		border-right: 0;
		border-bottom: 1px solid var(--gc-line);
	}

	.gc-process-grid {
		grid-template-columns: 1fr;
	}

	.gc-footer__grid {
		grid-template-columns: 1fr;
	}

	.gc-footer__grid > div {
		grid-column: 1 !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}
}

/* === 返回顶部按钮（全站公共） === */
.gc-backtop {
	position: fixed;
	right: 24px;
	bottom: 96px;
	z-index: 90;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	width: 48px;
	height: 48px;
	padding: 0;
	border: none;
	border-radius: 12px;
	background: #1f6feb;
	color: #fff;
	font-size: 12px;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 8px 24px rgba(15, 40, 90, 0.28);
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition: opacity .25s ease, transform .25s ease, visibility .25s ease, background .2s ease;
}
.gc-backtop svg { width: 22px; height: 22px; }
.gc-backtop span { font-size: 11px; }
.gc-backtop.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.gc-backtop:hover { background: #1357c4; }
.gc-backtop:focus-visible { outline: 3px solid rgba(31, 111, 235, 0.45); outline-offset: 2px; }
@media (max-width: 720px) {
	.gc-backtop { right: 14px; bottom: 84px; width: 44px; height: 44px; border-radius: 10px; }
}
