:root {
	--ink: #101722;
	--ink-soft: #596171;
	--paper: #f4f2ed;
	--surface: #ffffff;
	--surface-soft: #f8f7f3;
	--gold: #c99b3d;
	--gold-deep: #9b7127;
	--gold-light: #ead6a4;
	--line: #e7e3da;
	--up: #d94c5c;
	--down: #199879;
	--shadow: 0 20px 55px rgba(16, 23, 34, 0.08);
	--container: 1180px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--ink);
	background:
		radial-gradient(circle at 10% 0%, rgba(201, 155, 61, 0.08), transparent 26rem),
		var(--paper);
	font-family:
		Inter, "SF Pro Display", "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
	-webkit-font-smoothing: antialiased;
}

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

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

button {
	font: inherit;
}

svg {
	display: block;
}

.page-shell {
	min-height: 100vh;
}

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

.site-header {
	position: sticky;
	z-index: 50;
	top: 0;
	background: rgba(16, 23, 34, 0.94);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 78px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 13px;
	color: #fff;
}

.brand:focus-visible,
.desktop-nav a:focus-visible,
.mobile-nav a:focus-visible,
.primary-button:focus-visible,
.phone-link:focus-visible,
.text-button:focus-visible,
.text-link:focus-visible {
	outline: 3px solid rgba(234, 214, 164, 0.9);
	outline-offset: 3px;
}

.brand-mark {
	position: relative;
	display: grid;
	width: 40px;
	height: 40px;
	place-items: center;
	border: 1px solid rgba(234, 214, 164, 0.46);
	border-radius: 50%;
	transform: rotate(45deg);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
	position: absolute;
	content: "";
	background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.brand-mark::before {
	width: 13px;
	height: 13px;
	border-radius: 2px;
}

.brand-mark::after {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	transform: translate(11px, -11px);
}

.brand-mark span {
	width: 1px;
	height: 50px;
	opacity: 0.5;
}

.brand-copy {
	display: flex;
	flex-direction: column;
}

.brand-copy strong {
	font-family: "Songti SC", "STSong", "Noto Serif SC", serif;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 0.18em;
	line-height: 1.1;
}

.brand-copy small {
	margin-top: 5px;
	color: rgba(255, 255, 255, 0.48);
	font-size: 8px;
	font-weight: 600;
	letter-spacing: 0.18em;
}

.desktop-nav {
	display: flex;
	align-items: stretch;
	align-self: stretch;
	gap: 36px;
}

.desktop-nav a {
	position: relative;
	display: flex;
	align-items: center;
	color: rgba(255, 255, 255, 0.65);
	font-size: 15px;
	font-weight: 600;
	transition:
		color 180ms ease,
		background-color 180ms ease;
}

.desktop-nav a::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 2px;
	content: "";
	background: var(--gold);
	transform: scaleX(0);
	transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
	color: #fff;
}

.desktop-nav a.active::after {
	transform: scaleX(1);
}

.market-intro {
	overflow: hidden;
	background:
		linear-gradient(120deg, rgba(16, 23, 34, 0.98), rgba(27, 35, 48, 0.94)),
		repeating-linear-gradient(125deg, transparent 0 40px, rgba(255, 255, 255, 0.025) 40px 41px);
	color: #fff;
}

.intro-grid {
	position: relative;
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	min-height: 230px;
	padding-top: 38px;
	padding-bottom: 38px;
}

.intro-grid::after {
	position: absolute;
	right: 19%;
	width: 210px;
	height: 210px;
	border: 1px solid rgba(234, 214, 164, 0.12);
	border-radius: 50%;
	content: "";
	box-shadow:
		0 0 0 42px rgba(234, 214, 164, 0.025),
		0 0 0 84px rgba(234, 214, 164, 0.018);
}

.intro-copy,
.market-clock {
	position: relative;
	z-index: 1;
}

.eyebrow,
.section-kicker {
	margin: 0;
	color: var(--gold);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.22em;
}

.intro-copy h1,
.subpage-hero h1,
.express-copy h1 {
	margin: 13px 0 10px;
	font-family: "Songti SC", "STSong", "Noto Serif SC", serif;
	font-size: clamp(34px, 4vw, 52px);
	line-height: 1.1;
	letter-spacing: 0.05em;
}

.intro-description {
	margin: 0;
	color: rgba(255, 255, 255, 0.58);
	font-size: 15px;
	letter-spacing: 0.04em;
}

.market-clock {
	display: flex;
	align-items: center;
	gap: 32px;
	padding: 22px 24px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.055);
	box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
}

.market-clock > div {
	display: grid;
	grid-template-columns: auto auto;
	align-items: baseline;
	column-gap: 12px;
}

.clock-label {
	grid-column: 1 / -1;
	margin-bottom: 7px;
	color: rgba(255, 255, 255, 0.45);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
}

#market-time {
	font-variant-numeric: tabular-nums;
	font-size: 27px;
	letter-spacing: 0.04em;
}

#market-date {
	color: rgba(255, 255, 255, 0.55);
	font-size: 12px;
}

.status-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-width: 92px;
	padding: 9px 12px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	white-space: nowrap;
}

.status-badge i {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: currentColor;
	box-shadow: 0 0 0 4px currentColor;
}

.status-open {
	color: #61d2ac;
	background: rgba(45, 173, 131, 0.12);
}

.status-closed {
	color: #f08b97;
	background: rgba(217, 76, 92, 0.13);
}

.status-connecting {
	color: #e2c77f;
	background: rgba(201, 155, 61, 0.13);
}

.status-connecting i {
	animation: pulse 1.4s ease-in-out infinite;
}

.market-content {
	padding-top: 34px;
	padding-bottom: 62px;
}

.connection-notice {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 14px;
	padding: 11px 14px;
	border: 1px solid rgba(201, 155, 61, 0.25);
	border-radius: 10px;
	color: #7d5c20;
	background: #fff8e8;
	font-size: 13px;
}

.connection-notice[hidden] {
	display: none;
}

.connection-notice span {
	display: grid;
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	place-items: center;
	border-radius: 50%;
	color: #fff;
	background: var(--gold);
	font-size: 11px;
	font-weight: 800;
}

.market-panel {
	overflow: hidden;
	border: 1px solid rgba(16, 23, 34, 0.07);
	border-radius: 18px;
	background: var(--surface);
	box-shadow: var(--shadow);
}

.international-panel {
	margin-top: 22px;
}

.panel-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 84px;
	padding: 18px 26px;
	border-bottom: 1px solid var(--line);
}

.panel-heading h2,
.process-heading h2 {
	margin: 5px 0 0;
	font-family: "Songti SC", "STSong", "Noto Serif SC", serif;
	font-size: 23px;
	letter-spacing: 0.04em;
}

.update-note,
.market-unit {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	color: var(--ink-soft);
	font-size: 12px;
	font-weight: 600;
}

.live-dot {
	position: relative;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #3db28b;
}

.live-dot::after {
	position: absolute;
	inset: -4px;
	border: 1px solid rgba(61, 178, 139, 0.4);
	border-radius: 50%;
	content: "";
	animation: pulse-ring 1.8s ease-out infinite;
}

.table-wrap {
	overflow-x: auto;
}

.market-table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
}

.market-table th,
.market-table td {
	width: 25%;
	text-align: center;
}

.market-table th {
	height: 48px;
	color: #777f8d;
	background: #faf9f6;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.market-table th + th,
.market-table td + td {
	border-left: 1px solid var(--line);
}

.market-table tbody tr {
	border-top: 1px solid var(--line);
	transition: background-color 160ms ease;
}

.market-table tbody tr:first-child {
	border-top: 0;
}

.market-table tbody tr:nth-child(even) {
	background: #fbfaf7;
}

.market-table tbody tr:hover {
	background: #f7f3e8;
}

.market-table td {
	height: 64px;
	padding: 7px 10px;
	font-variant-numeric: tabular-nums;
	font-size: 17px;
	font-weight: 650;
	transition:
		color 160ms ease,
		background-color 160ms ease;
}

.market-table td:first-child {
	font-family: "Songti SC", "STSong", "Noto Serif SC", serif;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.12em;
}

.market-table .price-up {
	color: var(--up);
}

.market-table .price-down {
	color: var(--down);
}

.market-table .price-neutral {
	color: #818896;
}

.high-low {
	display: grid;
	gap: 2px;
	font-size: 13px;
	line-height: 1.25;
}

.high-low span:first-child::before,
.high-low span:last-child::before {
	margin-right: 5px;
	color: #a2a7b0;
	font-size: 9px;
	font-weight: 700;
}

.high-low span:first-child::before {
	content: "H";
}

.high-low span:last-child::before {
	content: "L";
}

.market-disclaimer {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	margin-top: 18px;
	color: #767c86;
	font-size: 12px;
	line-height: 1.7;
}

.market-disclaimer p {
	margin: 0;
}

.disclaimer-icon,
.boundary-icon {
	display: grid;
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	place-items: center;
	border: 1px solid #c8c4ba;
	border-radius: 50%;
	font-family: Georgia, serif;
	font-size: 12px;
	font-style: italic;
}

.site-footer {
	padding: 36px 0;
	color: rgba(255, 255, 255, 0.62);
	background: var(--ink);
}

.footer-inner {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px;
}

.footer-inner strong {
	color: rgba(255, 255, 255, 0.92);
	font-family: "Songti SC", "STSong", "Noto Serif SC", serif;
	font-size: 15px;
	letter-spacing: 0.08em;
}

.footer-inner p {
	margin: 8px 0 0;
	font-size: 12px;
}

.footer-meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 10px 22px;
	font-size: 11px;
}

.footer-meta a:hover {
	color: var(--gold-light);
}

.mobile-nav {
	display: none;
}

.subpage-hero {
	position: relative;
	overflow: hidden;
	color: #fff;
	background: var(--ink);
}

.subpage-hero::after {
	position: absolute;
	top: -120px;
	right: 10%;
	width: 360px;
	height: 360px;
	border: 1px solid rgba(234, 214, 164, 0.12);
	border-radius: 50%;
	content: "";
}

.subpage-hero-inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 310px;
}

.subpage-hero h1 {
	margin-bottom: 15px;
}

.subpage-hero p:last-child {
	max-width: 560px;
	margin: 0;
	color: rgba(255, 255, 255, 0.58);
	font-size: 15px;
	line-height: 1.8;
}

.hero-monogram {
	color: rgba(234, 214, 164, 0.08);
	font-family: Georgia, serif;
	font-size: clamp(90px, 14vw, 190px);
	font-weight: 800;
	letter-spacing: -0.08em;
}

.contact-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
	gap: 54px;
	padding-top: 70px;
	padding-bottom: 52px;
}

.primary-contact {
	padding: 34px;
	border-radius: 20px;
	color: #fff;
	background:
		linear-gradient(150deg, rgba(201, 155, 61, 0.2), transparent 55%),
		var(--ink);
	box-shadow: var(--shadow);
}

.primary-contact h2 {
	margin: 10px 0 12px;
	font-family: "Songti SC", "STSong", "Noto Serif SC", serif;
	font-size: 30px;
}

.contact-lead {
	margin: 0;
	color: rgba(255, 255, 255, 0.58);
	font-size: 14px;
	line-height: 1.8;
}

.phone-link {
	display: grid;
	margin-top: 34px;
	padding: 24px;
	border: 1px solid rgba(234, 214, 164, 0.22);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.05);
	transition:
		transform 180ms ease,
		background-color 180ms ease;
}

.phone-link:hover {
	background: rgba(255, 255, 255, 0.08);
	transform: translateY(-2px);
}

.phone-link span,
.phone-link small {
	color: rgba(255, 255, 255, 0.5);
	font-size: 11px;
}

.phone-link strong {
	margin: 7px 0;
	color: var(--gold-light);
	font-size: clamp(26px, 3vw, 35px);
	font-weight: 700;
	letter-spacing: 0.04em;
}

.contact-details {
	display: grid;
}

.detail-block {
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: 20px;
	padding: 30px 0;
	border-bottom: 1px solid #d9d5cc;
}

.detail-block:first-child {
	padding-top: 12px;
}

.detail-icon {
	display: grid;
	width: 52px;
	height: 52px;
	place-items: center;
	border: 1px solid rgba(201, 155, 61, 0.3);
	border-radius: 50%;
	color: var(--gold-deep);
	background: rgba(201, 155, 61, 0.08);
}

.detail-icon svg {
	width: 23px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.7;
}

.detail-label {
	margin: 0 0 6px;
	color: var(--gold-deep);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.16em;
}

.detail-block h3 {
	margin: 0 0 7px;
	font-family: "Songti SC", "STSong", "Noto Serif SC", serif;
	font-size: 22px;
}

.detail-block p:not(.detail-label) {
	margin: 0;
	color: var(--ink-soft);
	font-size: 14px;
	line-height: 1.8;
}

.text-button,
.text-link {
	display: inline-flex;
	margin-top: 14px;
	padding: 0;
	border: 0;
	color: var(--gold-deep);
	background: none;
	font-size: 12px;
	font-weight: 800;
	cursor: pointer;
}

.text-button:hover,
.text-link:hover {
	color: var(--ink);
}

.contact-promise {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-bottom: 72px;
	border-top: 1px solid #d9d5cc;
	border-bottom: 1px solid #d9d5cc;
}

.contact-promise > div {
	padding: 30px;
}

.contact-promise > div + div {
	border-left: 1px solid #d9d5cc;
}

.contact-promise span {
	color: var(--gold);
	font-family: Georgia, serif;
	font-size: 12px;
	font-style: italic;
}

.contact-promise h3 {
	margin: 10px 0 7px;
	font-family: "Songti SC", "STSong", "Noto Serif SC", serif;
	font-size: 18px;
}

.contact-promise p {
	margin: 0;
	color: var(--ink-soft);
	font-size: 13px;
	line-height: 1.7;
}

.express-hero {
	overflow: hidden;
	color: #fff;
	background:
		linear-gradient(128deg, rgba(16, 23, 34, 0.99), rgba(28, 37, 50, 0.96)),
		var(--ink);
}

.express-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(350px, 0.9fr);
	align-items: center;
	min-height: 540px;
}

.express-copy h1 {
	margin-top: 16px;
	font-size: clamp(40px, 5vw, 64px);
	line-height: 1.2;
	letter-spacing: 0.03em;
}

.express-copy h1 em {
	color: var(--gold-light);
	font-style: normal;
}

.express-copy > p:not(.eyebrow):not(.external-note) {
	max-width: 520px;
	margin: 0;
	color: rgba(255, 255, 255, 0.58);
	font-size: 15px;
	line-height: 1.85;
}

.primary-button {
	display: inline-flex;
	align-items: center;
	gap: 34px;
	margin-top: 34px;
	padding: 16px 22px;
	border-radius: 8px;
	color: #17130a;
	background: linear-gradient(135deg, #ead6a4, #c99b3d);
	box-shadow: 0 12px 28px rgba(201, 155, 61, 0.18);
	font-size: 14px;
	font-weight: 800;
	transition:
		transform 180ms ease,
		box-shadow 180ms ease;
}

.primary-button:hover {
	box-shadow: 0 16px 35px rgba(201, 155, 61, 0.25);
	transform: translateY(-2px);
}

.primary-button svg {
	width: 19px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.external-note {
	margin: 12px 0 0;
	color: rgba(255, 255, 255, 0.38);
	font-size: 11px;
}

.protection-visual {
	position: relative;
	display: grid;
	height: 400px;
	place-items: center;
}

.shield {
	position: absolute;
	top: 52px;
	right: 28px;
	display: grid;
	width: 210px;
	height: 210px;
	place-items: center;
	border: 1px solid rgba(234, 214, 164, 0.22);
	border-radius: 50%;
	color: rgba(234, 214, 164, 0.55);
	background: rgba(201, 155, 61, 0.05);
}

.shield::after {
	position: absolute;
	inset: 24px;
	border: 1px solid rgba(234, 214, 164, 0.1);
	border-radius: 50%;
	content: "";
}

.shield svg {
	width: 78px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1;
}

.parcel {
	position: absolute;
	right: 132px;
	bottom: 48px;
	display: flex;
	width: 210px;
	height: 160px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 4px;
	color: #fff;
	background: linear-gradient(145deg, #283241, #171e29);
	box-shadow: 25px 28px 55px rgba(0, 0, 0, 0.28);
	transform: rotate(-5deg);
}

.parcel::before,
.parcel::after {
	position: absolute;
	content: "";
	background: rgba(255, 255, 255, 0.08);
}

.parcel::before {
	top: 0;
	bottom: 0;
	left: 50%;
	width: 28px;
	transform: translateX(-50%);
}

.parcel::after {
	top: 24px;
	right: 0;
	left: 0;
	height: 1px;
}

.parcel-line {
	position: relative;
	z-index: 1;
	width: 32px;
	height: 2px;
	margin-bottom: 12px;
	background: var(--gold);
}

.parcel strong,
.parcel small {
	position: relative;
	z-index: 1;
}

.parcel strong {
	font-family: "Songti SC", "STSong", "Noto Serif SC", serif;
	font-size: 19px;
	letter-spacing: 0.15em;
}

.parcel small {
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.34);
	font-size: 8px;
	letter-spacing: 0.25em;
}

.orbit {
	position: absolute;
	border: 1px solid rgba(234, 214, 164, 0.13);
	border-radius: 50%;
}

.orbit-one {
	width: 380px;
	height: 180px;
	transform: rotate(-21deg);
}

.orbit-two {
	width: 470px;
	height: 280px;
	transform: rotate(30deg);
}

.express-process {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: 80px;
	padding-top: 78px;
	padding-bottom: 66px;
}

.process-heading h2 {
	margin-top: 10px;
	font-size: 32px;
}

.process-heading > p:last-child {
	margin: 14px 0 0;
	color: var(--ink-soft);
	font-size: 14px;
	line-height: 1.8;
}

.process-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.process-list li {
	display: grid;
	grid-template-columns: 54px 1fr;
	gap: 20px;
	padding: 22px 0;
	border-bottom: 1px solid #d9d5cc;
}

.process-list li:first-child {
	padding-top: 0;
}

.process-list > li > span {
	color: var(--gold);
	font-family: Georgia, serif;
	font-size: 20px;
	font-style: italic;
}

.process-list h3 {
	margin: 0 0 7px;
	font-family: "Songti SC", "STSong", "Noto Serif SC", serif;
	font-size: 18px;
}

.process-list p {
	margin: 0;
	color: var(--ink-soft);
	font-size: 13px;
	line-height: 1.7;
}

.service-boundary {
	display: grid;
	grid-template-columns: 32px 1fr;
	gap: 16px;
	margin-bottom: 76px;
	padding: 24px 28px;
	border: 1px solid rgba(201, 155, 61, 0.25);
	border-radius: 12px;
	background: #fff9eb;
}

.service-boundary .boundary-icon {
	width: 24px;
	height: 24px;
	border-color: var(--gold);
	color: var(--gold-deep);
}

.service-boundary h2 {
	margin: 1px 0 7px;
	font-size: 15px;
}

.service-boundary p {
	margin: 0;
	color: #6f6656;
	font-size: 12px;
	line-height: 1.75;
}

.sr-only {
	position: absolute;
	overflow: hidden;
	width: 1px;
	height: 1px;
	padding: 0;
	border: 0;
	margin: -1px;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
}

.toast {
	position: fixed;
	z-index: 100;
	bottom: 28px;
	left: 50%;
	padding: 11px 17px;
	border-radius: 999px;
	color: #fff;
	background: rgba(16, 23, 34, 0.94);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
	font-size: 13px;
	transform: translate(-50%, 24px);
	opacity: 0;
	pointer-events: none;
	transition:
		opacity 180ms ease,
		transform 180ms ease;
}

.toast.show {
	opacity: 1;
	transform: translate(-50%, 0);
}

@keyframes pulse {
	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(226, 199, 127, 0.35);
		opacity: 0.65;
	}
	50% {
		box-shadow: 0 0 0 5px rgba(226, 199, 127, 0);
		opacity: 1;
	}
}

@keyframes pulse-ring {
	from {
		opacity: 1;
		transform: scale(0.7);
	}
	to {
		opacity: 0;
		transform: scale(1.45);
	}
}

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

	.intro-grid {
		grid-template-columns: 1fr;
		gap: 26px;
	}

	.market-clock {
		justify-content: space-between;
	}

	.contact-layout {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.contact-details {
		grid-template-columns: 1fr 1fr;
		gap: 26px;
	}

	.detail-block:first-child {
		padding-top: 30px;
	}

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

	.protection-visual {
		transform: scale(0.8);
		transform-origin: right center;
	}

	.express-process {
		gap: 45px;
	}
}

@media (max-width: 680px) {
	body {
		padding-bottom: calc(68px + env(safe-area-inset-bottom));
	}

	.container {
		width: min(calc(100% - 24px), var(--container));
	}

	.header-inner {
		min-height: 64px;
	}

	.brand {
		gap: 10px;
	}

	.brand-mark {
		width: 34px;
		height: 34px;
	}

	.brand-mark::before {
		width: 11px;
		height: 11px;
	}

	.brand-mark span {
		height: 42px;
	}

	.brand-copy strong {
		font-size: 19px;
	}

	.brand-copy small {
		font-size: 6px;
	}

	.desktop-nav {
		display: none;
	}

	.intro-grid {
		min-height: auto;
		padding-top: 26px;
		padding-bottom: 24px;
	}

	.intro-grid::after {
		right: -60px;
		width: 180px;
		height: 180px;
	}

	.intro-copy h1,
	.subpage-hero h1 {
		margin: 9px 0 7px;
		font-size: 30px;
	}

	.intro-description {
		font-size: 13px;
	}

	.market-clock {
		gap: 12px;
		padding: 14px 15px;
		border-radius: 12px;
	}

	.clock-label {
		margin-bottom: 4px;
		font-size: 9px;
	}

	#market-time {
		font-size: 21px;
	}

	#market-date {
		font-size: 10px;
	}

	.status-badge {
		min-width: auto;
		padding: 8px 10px;
		font-size: 11px;
	}

	.market-content {
		padding-top: 14px;
		padding-bottom: 38px;
	}

	.market-panel {
		border-radius: 12px;
		box-shadow: 0 12px 30px rgba(16, 23, 34, 0.07);
	}

	.international-panel {
		margin-top: 14px;
	}

	.panel-heading {
		min-height: 68px;
		padding: 13px 15px;
	}

	.panel-heading h2 {
		margin-top: 3px;
		font-size: 19px;
	}

	.section-kicker {
		font-size: 8px;
	}

	.market-unit,
	.update-note {
		font-size: 10px;
	}

	.market-table th {
		height: 39px;
		font-size: 10px;
		letter-spacing: 0.04em;
	}

	.market-table td {
		height: 53px;
		padding: 5px 3px;
		font-size: clamp(13px, 3.75vw, 16px);
	}

	.market-table td:first-child {
		font-size: 13px;
		letter-spacing: 0.06em;
	}

	.high-low {
		font-size: 10px;
	}

	.high-low span:first-child::before,
	.high-low span:last-child::before {
		margin-right: 3px;
		font-size: 7px;
	}

	.site-footer {
		padding: 27px 0;
	}

	.footer-inner {
		display: grid;
		gap: 18px;
	}

	.footer-inner p {
		line-height: 1.6;
	}

	.footer-meta {
		justify-content: flex-start;
		gap: 8px 16px;
	}

	.mobile-nav {
		position: fixed;
		z-index: 60;
		right: 0;
		bottom: 0;
		left: 0;
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		min-height: calc(68px + env(safe-area-inset-bottom));
		padding-bottom: env(safe-area-inset-bottom);
		border-top: 1px solid rgba(16, 23, 34, 0.1);
		background: rgba(255, 255, 255, 0.96);
		box-shadow: 0 -12px 35px rgba(16, 23, 34, 0.08);
		backdrop-filter: blur(18px);
		-webkit-backdrop-filter: blur(18px);
	}

	.mobile-nav a {
		position: relative;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 4px;
		color: #8b9099;
		font-size: 10px;
		font-weight: 650;
	}

	.mobile-nav a.active {
		color: var(--gold-deep);
	}

	.mobile-nav a.active::before {
		position: absolute;
		top: 0;
		width: 32px;
		height: 2px;
		border-radius: 999px;
		content: "";
		background: var(--gold);
	}

	.mobile-nav svg {
		width: 21px;
		fill: none;
		stroke: currentColor;
		stroke-linecap: round;
		stroke-linejoin: round;
		stroke-width: 1.7;
	}

	.subpage-hero-inner {
		min-height: 230px;
	}

	.subpage-hero p:last-child {
		font-size: 13px;
	}

	.hero-monogram {
		position: absolute;
		right: 0;
		bottom: 10px;
		font-size: 90px;
	}

	.contact-layout {
		gap: 22px;
		padding-top: 24px;
		padding-bottom: 32px;
	}

	.primary-contact {
		padding: 24px;
		border-radius: 14px;
	}

	.primary-contact h2 {
		font-size: 25px;
	}

	.phone-link {
		margin-top: 24px;
		padding: 19px;
	}

	.phone-link strong {
		font-size: 27px;
	}

	.contact-details {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.detail-block,
	.detail-block:first-child {
		padding: 24px 0;
	}

	.detail-block h3 {
		font-size: 19px;
	}

	.contact-promise {
		grid-template-columns: 1fr;
		margin-bottom: 36px;
	}

	.contact-promise > div {
		padding: 22px 8px;
	}

	.contact-promise > div + div {
		border-top: 1px solid #d9d5cc;
		border-left: 0;
	}

	.express-hero-grid {
		display: block;
		min-height: auto;
		padding-top: 52px;
		padding-bottom: 44px;
	}

	.express-copy h1 {
		font-size: 36px;
	}

	.express-copy > p:not(.eyebrow):not(.external-note) {
		font-size: 13px;
	}

	.primary-button {
		justify-content: space-between;
		width: 100%;
		margin-top: 28px;
	}

	.protection-visual {
		display: none;
	}

	.express-process {
		grid-template-columns: 1fr;
		gap: 32px;
		padding-top: 38px;
		padding-bottom: 36px;
	}

	.process-heading h2 {
		font-size: 26px;
	}

	.service-boundary {
		margin-bottom: 38px;
		padding: 20px;
	}

	.toast {
		bottom: calc(82px + env(safe-area-inset-bottom));
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

/* 行情页：紧凑、数据优先 */
.market-screen {
	padding: 0 0 46px;
	background: #eef2f6;
}

.market-screen .page-shell {
	min-height: 100vh;
	padding-bottom: 0;
}

.market-header {
	position: sticky;
	z-index: 50;
	top: 0;
	border-bottom: 1px solid #dedede;
	background: rgba(255, 255, 255, 0.97);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.market-header-inner {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	width: min(calc(100% - 32px), 1180px);
	min-height: 64px;
	margin: 0 auto;
}

.market-brand {
	display: inline-flex;
	align-items: center;
	justify-self: start;
	gap: 10px;
	color: #151719;
}

.market-logo {
	display: block;
	width: 48px;
	height: 32px;
	object-fit: contain;
	mix-blend-mode: multiply;
}

.market-brand strong {
	color: var(--gold-deep);
	font-size: 26px;
	font-weight: 650;
	letter-spacing: 0.06em;
}

.market-header-business {
	display: none;
}

.market-desktop-nav {
	display: flex;
	align-items: center;
	gap: 30px;
}

.market-desktop-nav a {
	position: relative;
	padding: 21px 0;
	color: #777c84;
	font-size: 14px;
	font-weight: 600;
}

.market-desktop-nav a:hover,
.market-desktop-nav a.active {
	color: #1e2126;
}

.market-desktop-nav a.active::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 2px;
	content: "";
	background: #c99b3d;
}

.market-header-meta {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-self: end;
	gap: 2px;
}

.market-slogan {
	color: #2c3035;
	font-size: 15px;
	font-weight: 650;
	white-space: nowrap;
}

.market-datetime-row {
	display: flex;
	align-items: center;
	gap: 6px;
	white-space: nowrap;
}

#market-time {
	color: #262a2f;
	font-size: 17px;
	font-variant-numeric: tabular-nums;
	font-weight: 600;
	letter-spacing: 0;
}

.market-status {
	display: inline-flex;
	align-items: center;
	gap: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent !important;
	font-size: 15px;
	font-weight: 650;
	white-space: nowrap;
}

.market-status i {
	display: none;
}

.market-status.status-open {
	color: #16966f;
	background: #f4fbf8;
}

.market-status.status-closed {
	color: #d84a5b;
	background: #fff7f8;
}

.market-status.status-connecting {
	color: #8b733e;
	background: #fffbf1;
}

@media (min-width: 960px) {
	.market-screen .market-header-inner {
		grid-template-columns: auto minmax(260px, 1fr) auto;
		width: 100%;
		min-height: 60px;
		padding: 0 clamp(24px, 2.5vw, 48px);
		column-gap: clamp(28px, 4vw, 72px);
	}

	.market-screen .market-header-business {
		display: block;
		justify-self: center;
		margin: 0;
		color: #68635a;
		font-size: 14px;
		font-weight: 600;
		letter-spacing: 0.12em;
		white-space: nowrap;
	}

	.market-screen .market-slogan {
		display: none;
	}

	.market-screen .market-header-meta {
		align-items: center;
	}
}

.market-main {
	width: 100%;
	margin: 0 auto;
	padding: 0;
}

.market-screen .connection-notice {
	margin: 0;
	border-radius: 0;
}

.market-board-wrap {
	overflow-x: auto;
	border-top: 0;
	border-right: 0;
	border-bottom: 1px solid #d9dee3;
	border-left: 0;
	background: #fff;
}

.market-screen .market-table {
	min-width: 560px;
	background: #fff;
}

.market-screen .market-table th,
.market-screen .market-table td {
	border-color: #d9dee3;
}

.market-screen .market-table thead th {
	height: 48px;
	color: #131517;
	background: #f2ca2e;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0;
}

.market-screen .market-table tbody tr {
	border-top-color: #d9dee3;
}

.market-screen .market-table tbody tr:nth-child(even) {
	background: #eef2f6;
}

.market-screen .market-table tbody tr:nth-child(odd) {
	background: #fff;
}

.market-screen .market-table tbody tr:hover {
	background: #f7f8f9;
}

.market-screen .market-table td {
	height: 58px;
	padding: 5px 8px;
	color: #20242b;
	font-family:
		"PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
	font-size: 22px;
	font-weight: 500;
}

.market-screen .market-table td:first-child {
	font-family:
		"PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
	font-size: 22px;
	font-weight: 500;
	letter-spacing: 0.12em;
}

.market-screen .market-table .price-up {
	color: #d84a5b;
}

.market-screen .market-table .price-down {
	color: #16966f;
}

.market-screen .market-table .price-neutral {
	color: #111111;
}

.market-screen .high-low {
	gap: 3px;
	font-size: 15px;
}

.market-section-heading tr,
.market-section-heading tr:hover {
	background: #f2ca2e !important;
}

.market-section-heading th {
	height: 46px;
	color: #111315;
	background: #f2ca2e;
	font-size: 21px;
	font-weight: 600;
	letter-spacing: 0.32em;
	text-align: center;
}

.market-state-row td {
	height: 88px !important;
	color: #8a8f96 !important;
	font-size: 14px !important;
	font-weight: 400 !important;
	letter-spacing: 0 !important;
}

.market-screen .market-disclaimer {
	align-items: center;
	gap: 12px;
	margin: 0;
	padding: 14px max(24px, calc((100vw - 1180px) / 2));
	color: #666c74;
	border-top: 1px solid #e1e4e7;
	border-bottom: 1px solid #e1e4e7;
	background: #f7f8f9;
	font-size: 13px;
}

.market-screen .market-disclaimer > div {
	display: flex;
	align-items: baseline;
	gap: 12px;
}

.market-screen .market-disclaimer strong {
	flex: 0 0 auto;
	color: #2c3137;
	font-size: 13px;
	font-weight: 700;
}

.market-screen .market-disclaimer p {
	line-height: 1.65;
}

.market-screen .disclaimer-icon {
	width: 22px;
	height: 22px;
	color: #8d6825;
	border-color: #cfb776;
	background: #fff;
	font-size: 12px;
}

.market-footer {
	padding: 0;
	color: rgba(255, 255, 255, 0.58);
	border-top: 0;
	background: #20242a;
	font-size: 12px;
}

.market-footer-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	width: min(calc(100% - 48px), 1180px);
	margin: 0 auto;
	padding: 22px 0 24px;
}

.market-footer-brand {
	display: grid;
	gap: 4px;
}

.market-footer-brand strong {
	color: #fff;
	font-size: 15px;
	font-weight: 650;
}

.market-footer-brand span {
	color: rgba(255, 255, 255, 0.45);
	font-size: 11px;
}

.market-footer-meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 8px 18px;
}

.market-footer-meta a,
.market-footer-meta span {
	color: rgba(255, 255, 255, 0.58);
}

.market-footer-meta .market-footer-phone {
	color: #f1d16a;
	font-weight: 600;
}

.market-footer-meta a:hover {
	color: #fff;
}

/* 联系我们：桌面双栏、手机线性信息结构 */
.compact-page {
	padding: 0 0 46px;
	background: #eef2f6;
}

.compact-page .page-shell {
	min-height: 100vh;
}

.contact-screen .page-shell {
	display: flex;
	flex-direction: column;
	min-height: calc(100vh - 46px);
}

.contact-screen .market-footer {
	margin-top: auto;
}

.simple-header .market-header-inner {
	grid-template-columns: 1fr;
}

.contact-main {
	display: grid;
	grid-template-columns: minmax(300px, 370px) minmax(0, 1fr);
	align-items: stretch;
	gap: 18px;
	width: min(calc(100% - 48px), 1180px);
	min-height: 560px;
	margin: 28px auto;
}

.contact-overview {
	display: flex;
	flex-direction: column;
	min-height: 470px;
	padding: 40px 36px 32px;
	color: #fff;
	background: #20242a;
}

.contact-eyebrow {
	color: #e0bb49;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.2em;
}

.contact-overview h1 {
	margin: 15px 0 18px;
	font-size: 42px;
	font-weight: 650;
	letter-spacing: 0.03em;
}

.contact-lead {
	max-width: 290px;
	margin: 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: 16px;
	line-height: 1.85;
}

.contact-hotline {
	display: grid;
	gap: 7px;
	margin-top: auto;
	padding-top: 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-hotline span {
	color: rgba(255, 255, 255, 0.5);
	font-size: 12px;
	letter-spacing: 0.08em;
}

.contact-hotline a {
	color: #fff;
	font-size: 27px;
	font-weight: 600;
	font-variant-numeric: tabular-nums;
}


.contact-primary-action {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	margin-top: 22px;
	color: #1f2022;
	background: #f2ca2e;
	font-size: 16px;
	font-weight: 700;
}

.contact-primary-action:hover {
	background: #f6d553;
}

.contact-methods {
	display: grid;
	gap: 10px;
}

.contact-method {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr) auto;
	align-items: center;
	gap: 18px;
	min-height: 108px;
	padding: 18px 24px;
	border: 1px solid #dfe3e7;
	background: #fff;
	transition: border-color 160ms ease;
}

.contact-method:hover {
	border-color: #c5ab64;
}

.contact-method-index {
	align-self: start;
	padding-top: 2px;
	color: #aa7d25;
	font-size: 13px;
	font-weight: 700;
	font-variant-numeric: tabular-nums;
}

.contact-method-content {
	min-width: 0;
}

.contact-method-label {
	margin: 0 0 7px;
	color: #9b7127;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
}

.contact-method-content h2 {
	margin: 0;
	color: #20242b;
	font-size: 23px;
	font-weight: 600;
}

.contact-method-content > p:last-child {
	margin: 7px 0 0;
	color: #747a82;
	font-size: 13px;
	line-height: 1.55;
}

.contact-secondary-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 94px;
	min-height: 42px;
	padding: 8px 13px;
	color: #20242b;
	border: 1px solid #b9984e;
	background: #fff;
	font-size: 15px;
	font-weight: 600;
	text-align: center;
	cursor: pointer;
}

.contact-secondary-action:hover {
	color: #1f2022;
	background: #f2ca2e;
}

.contact-service-note {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 18px;
	padding: 14px 20px;
	color: #6d737b;
	border-left: 3px solid #c59a36;
	background: #f8f9fa;
}

.contact-service-note strong {
	color: #30343a;
	font-size: 14px;
	white-space: nowrap;
}

.contact-service-note p {
	margin: 0;
	font-size: 13px;
	line-height: 1.75;
}

.express-heading {
	padding-bottom: 34px;
}

.compact-primary-action {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(100%, 360px);
	margin-top: 24px;
	padding: 14px 16px;
	color: #17130a;
	border-radius: 4px;
	background: #f2ca2e;
	font-size: 14px;
	font-weight: 700;
}

.compact-primary-action:hover {
	background: #e5bb1d;
}

.compact-page-heading small {
	display: block;
	margin-top: 10px;
	color: #979ca3;
	font-size: 11px;
}

.compact-steps {
	padding: 28px 32px 0;
}

.compact-steps > h2 {
	margin: 0 0 12px;
	font-size: 18px;
	font-weight: 650;
}

.compact-steps ol {
	margin: 0;
	padding: 0;
	border-top: 1px solid #d9dee3;
	list-style: none;
}

.compact-steps li {
	display: grid;
	grid-template-columns: 32px 1fr;
	gap: 14px;
	padding: 20px 0;
	border-bottom: 1px solid #d9dee3;
}

.compact-steps li > span {
	display: grid;
	width: 25px;
	height: 25px;
	place-items: center;
	border-radius: 50%;
	color: #fff;
	background: #9b7127;
	font-size: 12px;
	font-weight: 700;
}

.compact-steps h3 {
	margin: 1px 0 5px;
	font-size: 15px;
	font-weight: 650;
}

.compact-steps p {
	margin: 0;
	color: #777d85;
	font-size: 12px;
	line-height: 1.7;
}

.compact-bottom-nav {
	position: fixed;
	z-index: 60;
	right: 0;
	bottom: 0;
	left: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	min-height: calc(46px + env(safe-area-inset-bottom));
	padding-bottom: env(safe-area-inset-bottom);
	border-top: 1px solid #c9c9c9;
	background: #050505;
	box-shadow: none;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}

.compact-bottom-nav a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	border-left: 1px solid rgba(255, 255, 255, 0.82);
	font-size: 14px;
	font-weight: 600;
	text-align: center;
}

.compact-bottom-nav a:first-child {
	border-left: 0;
}

.compact-bottom-nav a.active {
	color: #fff;
	background: #8f2523;
}

@media (max-width: 680px) {
	.market-screen {
		padding-bottom: calc(42px + env(safe-area-inset-bottom));
	}

	.market-header-inner {
		display: flex;
		justify-content: space-between;
		width: calc(100% - 24px);
		min-height: 68px;
	}

	.market-brand {
		gap: 8px;
	}

	.market-logo {
		width: 42px;
		height: 30px;
	}

	.market-brand strong {
		font-size: 20px;
		letter-spacing: 0;
	}

	.market-desktop-nav {
		display: none;
	}

	.market-header-meta {
		gap: 1px;
	}

	.market-slogan {
		font-size: 12px;
	}

	#market-time {
		font-size: 13px;
	}

	.market-status {
		font-size: 13px;
	}

	.market-main {
		width: 100%;
		padding: 0;
	}

	.market-board-wrap {
		overflow: hidden;
	}

	.market-screen .market-table {
		min-width: 0;
	}

	.market-screen .market-table thead th {
		height: 44px;
		font-size: 20px;
	}

	.market-screen .market-table td {
		height: 54px;
		padding: 4px 2px;
		font-size: 20px;
	}

	.market-screen .market-table td:first-child {
		font-size: 20px;
		letter-spacing: 0;
		white-space: nowrap;
	}

	.market-screen .high-low {
		gap: 1px;
		font-size: 13px;
	}

	.market-section-heading th {
		height: 44px;
		font-size: 20px;
		letter-spacing: 0.26em;
	}

	.market-state-row td {
		height: 74px !important;
		font-size: 12px !important;
	}

	.market-screen .market-disclaimer {
		align-items: flex-start;
		gap: 10px;
		padding: 12px 16px;
	}

	.market-screen .market-disclaimer > div {
		display: grid;
		gap: 2px;
	}

	.market-screen .market-disclaimer strong,
	.market-screen .market-disclaimer p {
		font-size: 12px;
	}

	.market-screen .disclaimer-icon {
		width: 20px;
		height: 20px;
		margin-top: 1px;
	}

	.market-footer {
		display: block;
		padding: 0;
	}

	.market-footer-inner {
		display: grid;
		gap: 13px;
		width: calc(100% - 32px);
		padding: 18px 0 20px;
	}

	.market-footer-brand {
		gap: 3px;
	}

	.market-footer-brand strong {
		font-size: 14px;
	}

	.market-footer-meta {
		justify-content: flex-start;
		gap: 7px 14px;
	}

	.compact-page {
		padding-bottom: calc(42px + env(safe-area-inset-bottom));
	}

	.contact-screen .page-shell {
		min-height: calc(100vh - 42px - env(safe-area-inset-bottom));
	}

	.simple-header .market-header-inner {
		display: flex;
	}

	.contact-main {
		display: block;
		width: 100%;
		min-height: 0;
		margin: 0;
	}

	.contact-overview {
		min-height: 0;
		padding: 28px 18px 26px;
	}

	.contact-overview h1 {
		margin: 10px 0 12px;
		font-size: 32px;
	}

	.contact-lead {
		max-width: none;
		font-size: 15px;
		line-height: 1.7;
	}

	.contact-hotline {
		margin-top: 24px;
		padding-top: 20px;
	}

	.contact-hotline a {
		font-size: 26px;
	}

	.contact-primary-action {
		min-height: 48px;
		margin-top: 18px;
	}

	.contact-methods {
		gap: 0;
		background: #fff;
	}

	.contact-method {
		grid-template-columns: 30px minmax(0, 1fr) auto;
		gap: 12px;
		min-height: 0;
		padding: 22px 18px;
		border: 0;
		border-bottom: 1px solid #e0e3e6;
	}

	.contact-method:hover {
		border-color: #e0e3e6;
	}

	.contact-method-index {
		font-size: 12px;
	}

	.contact-method-content h2 {
		font-size: 21px;
	}

	.contact-method-content > p:last-child {
		font-size: 14px;
		line-height: 1.55;
	}

	.contact-secondary-action {
		min-width: 82px;
		min-height: 40px;
		padding: 7px 10px;
		font-size: 14px;
	}

	.contact-service-note {
		display: grid;
		grid-template-columns: 1fr;
		gap: 5px;
		margin: 18px;
		padding: 15px 16px;
	}

	.compact-main {
		width: 100%;
		min-height: calc(100vh - 134px);
	}

	.compact-page-heading {
		padding: 26px 18px 22px;
	}

	.compact-page-heading h1 {
		font-size: 30px;
	}

	.simple-info-row {
		gap: 12px;
		min-height: 112px;
		padding: 20px 18px;
	}

	.simple-info-row h2 {
		font-size: 23px;
	}

	.simple-info-row p:not(.simple-label) {
		max-width: 230px;
		font-size: 15px;
	}

	.row-action {
		min-width: 72px;
		padding: 8px 9px;
	}

	.simple-note {
		margin: 22px 18px 30px;
	}

	.compact-steps {
		padding: 24px 18px 0;
	}

	.compact-bottom-nav {
		min-height: calc(42px + env(safe-area-inset-bottom));
		border-top: 1px solid #c9c9c9;
		background: #050505;
		box-shadow: none;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}

	.compact-bottom-nav a {
		gap: 0;
		color: #fff;
		border-left: 1px solid rgba(255, 255, 255, 0.82);
		font-size: 14px;
		font-weight: 600;
	}

	.compact-bottom-nav a:first-child {
		border-left: 0;
	}

	.compact-bottom-nav a.active {
		color: #fff;
		background: #8f2523;
	}

	.compact-bottom-nav a.active::before {
		display: none;
	}

	.compact-bottom-nav svg {
		display: none;
	}
}
