:root {
	--gold: #d99a00;
	--gold-dark: #a66f00;
	--gold-light: #fff4d6;
	--navy: #071a2f;
	--text: #111827;
	--muted: #6b7280;
	--green: #16a34a;
	--red: #dc2626;
	--border: #f1e3c2;
	--surface: #ffffff;
	--soft: #f8fafc;
	--shadow: 0 16px 45px rgba(7, 26, 47, 0.08);
	--radius: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: Inter, Arial, sans-serif;
	color: var(--text);
	background: #fff;
	line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
button, input, select { font: inherit; }
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.gvt-container {
	width: min(1200px, calc(100% - 40px));
	margin: 0 auto;
}
.gvt-card {
	background: var(--surface);
	border: 1px solid rgba(241, 227, 194, 0.9);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}
.gvt-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 22px;
	border: 1px solid transparent;
	border-radius: 8px;
	background: linear-gradient(135deg, #e7a90a, #c98200);
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	font-size: 13px;
	cursor: pointer;
	transition: transform .2s ease, box-shadow .2s ease;
}
.gvt-button:hover { transform: translateY(-1px); box-shadow: 0 10px 20px rgba(217, 154, 0, .22); }
.gvt-button--outline {
	background: #fff;
	color: var(--gold-dark);
	border-color: var(--gold);
}
.full { width: 100%; }

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: #fff;
	box-shadow: 0 8px 28px rgba(7, 26, 47, .08);
}
.topbar {
	background: linear-gradient(135deg, var(--navy), #102842);
	color: #fff;
	font-size: 13px;
}
.topbar__inner, .main-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
.topbar__inner { min-height: 44px; }
.topbar__time::before { content: "●"; color: var(--gold); margin-right: 8px; }
.topbar__links {
	display: flex;
	align-items: center;
	gap: 22px;
}
.topbar__links a { color: rgba(255,255,255,.9); }
.topbar__button {
	border: 1px solid rgba(255,255,255,.35);
	border-radius: 6px;
	padding: 6px 12px;
}
.topbar__button--gold {
	background: var(--gold);
	border-color: var(--gold);
	color: #fff;
}
.main-header { border-bottom: 1px solid #eef1f5; }
.main-header__inner { min-height: 92px; }
.brand img { display: block; width: 220px; }
.primary-menu {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.primary-menu a {
	display: block;
	padding: 34px 12px;
	font-size: 15px;
	font-weight: 700;
	color: #172033;
	border-bottom: 2px solid transparent;
}
.primary-menu a:hover, .primary-menu .current-menu-item > a {
	color: var(--gold-dark);
	border-bottom-color: var(--gold);
}
.header-search {
	display: flex;
	align-items: center;
	width: 180px;
	border: 1px solid #e5e7eb;
	border-radius: 999px;
	padding: 0 8px 0 14px;
	background: #fff;
}
.header-search input {
	width: 100%;
	border: 0;
	outline: 0;
	min-height: 42px;
}
.header-search button, .favorite-button, .menu-toggle {
	border: 0;
	background: transparent;
	cursor: pointer;
	color: var(--gold-dark);
}
.favorite-button { font-size: 24px; }
.menu-toggle {
	display: none;
	width: 42px;
	height: 42px;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
}
.menu-toggle span:not(.screen-reader-text) {
	display: block;
	width: 20px;
	height: 2px;
	margin: 5px auto;
	background: var(--navy);
}

.hero-section {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,251,239,.92) 44%, rgba(255,226,132,.55) 100%),
		radial-gradient(circle at 76% 45%, rgba(217,154,0,.28), transparent 36%);
}
.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(430px, 1fr);
	align-items: center;
	min-height: 330px;
	gap: 34px;
	padding: 34px 0 48px;
}
.breadcrumb {
	display: flex;
	gap: 9px;
	align-items: center;
	color: var(--muted);
	font-size: 13px;
	margin-bottom: 12px;
}
.breadcrumb a { color: var(--gold-dark); font-weight: 700; }
.breadcrumb span::before { content: "/"; margin-right: 9px; color: #cbd5e1; }
.hero-copy h1 {
	margin: 0;
	font-size: 44px;
	line-height: 1.08;
	color: var(--navy);
	text-transform: uppercase;
	letter-spacing: 0;
}
.hero-copy h1::first-letter { color: var(--gold-dark); }
.hero-kicker {
	margin: 8px 0;
	font-size: 22px;
	color: #334155;
}
.hero-desc {
	max-width: 620px;
	margin: 0 0 28px;
	color: #243244;
}
.benefit-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	font-weight: 700;
	font-size: 13px;
}
.benefit-grid div { display: flex; align-items: center; gap: 10px; }
.benefit-grid span {
	display: inline-grid;
	place-items: center;
	width: 32px;
	height: 32px;
	border: 2px solid var(--gold);
	border-radius: 50%;
	color: var(--gold-dark);
}
.hero-visual {
	position: relative;
	min-height: 280px;
}
.hero-visual::before {
	content: "";
	position: absolute;
	inset: 48px 0 16px;
	background-image: linear-gradient(rgba(217,154,0,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(217,154,0,.18) 1px, transparent 1px);
	background-size: 38px 38px;
	transform: perspective(500px) rotateX(58deg);
}
.gold-bar {
	position: absolute;
	right: 125px;
	top: 24px;
	width: 140px;
	height: 210px;
	padding-top: 42px;
	text-align: center;
	font-weight: 900;
	color: #a16000;
	border: 2px solid #b57400;
	border-radius: 18px;
	background: linear-gradient(135deg, #fff0a8 0%, #d99a00 45%, #9f6500 100%);
	box-shadow: 0 28px 38px rgba(122, 80, 0, .28);
	transform: rotate(13deg);
}
.gold-bar small { font-size: 17px; }
.gold-stack {
	position: absolute;
	width: 160px;
	height: 58px;
	border-radius: 10px;
	background: linear-gradient(135deg, #fff0a8, #d99a00 50%, #7b4f00);
	box-shadow: inset 0 0 0 2px rgba(130,80,0,.18), 0 18px 30px rgba(122,80,0,.18);
}
.gold-stack--one { right: 10px; bottom: 64px; transform: skewX(-18deg); }
.gold-stack--two { right: 265px; bottom: 56px; width: 120px; transform: skewX(-18deg); }
.gold-ring {
	position: absolute;
	right: 48px;
	bottom: 34px;
	width: 118px;
	height: 78px;
	border: 18px solid #e6a70a;
	border-radius: 50%;
	box-shadow: inset 0 0 0 6px #fff2ae, 0 15px 25px rgba(122,80,0,.18);
}
.growth-line {
	position: absolute;
	inset: 40px 0 auto auto;
	width: 520px;
	height: 160px;
	background: linear-gradient(140deg, transparent 48%, rgba(255,255,255,.9) 49%, rgba(255,255,255,.9) 51%, transparent 52%);
	opacity: .8;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 18px;
	margin-top: -35px;
	position: relative;
	z-index: 3;
}
.stat-card {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 20px;
	border-radius: var(--radius);
	background: #fff;
	border: 1px solid rgba(241,227,194,.9);
	box-shadow: var(--shadow);
}
.stat-card h2 {
	margin: 0 0 4px;
	font-size: 13px;
	text-transform: uppercase;
	color: #172033;
}
.stat-card strong {
	display: block;
	font-size: 24px;
	line-height: 1.1;
	color: var(--navy);
}
.stat-card span, .stat-card small { display: block; font-size: 12px; }
.trend-up { color: var(--green); }
.trend-down { color: var(--red); }
.trend-neutral { color: var(--gold-dark); }
.stat-icon {
	flex: 0 0 48px;
	width: 48px;
	height: 48px;
	border: 2px solid var(--gold);
	border-radius: 50%;
	background: var(--gold-light);
	position: relative;
}
.stat-icon::before {
	content: "";
	position: absolute;
	inset: 13px;
	border-radius: 5px;
	background: linear-gradient(135deg, #ffe18a, #d99a00);
	transform: skewX(-18deg);
}
.stat-icon--usd::before { content: "$"; inset: 0; display: grid; place-items: center; transform: none; background: transparent; color: var(--gold-dark); font-weight: 900; font-size: 26px; }
.stat-icon--clock::before { content: "◷"; inset: 0; display: grid; place-items: center; transform: none; background: transparent; color: var(--gold-dark); font-size: 28px; }
.stat-icon--ring::before { inset: 10px; border: 6px solid var(--gold); background: transparent; border-radius: 50%; transform: none; }

.content-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 350px;
	gap: 28px;
	padding: 28px 0 48px;
	align-items: start;
}
.main-column { display: grid; gap: 28px; min-width: 0; }
.site-sidebar { display: grid; gap: 22px; }
.price-board { overflow: hidden; }
.section-tabs {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-bottom: 1px solid #eef1f5;
}
.section-tabs button, .mini-tabs button, .chart-tabs button, .brand-filter button, .unit-buttons button {
	border: 0;
	background: #fff;
	cursor: pointer;
	font-weight: 800;
	color: #475569;
}
.section-tabs button {
	min-height: 60px;
	border-bottom: 2px solid transparent;
	text-transform: uppercase;
}
.section-tabs .is-active {
	color: var(--gold-dark);
	border-bottom-color: var(--gold);
}
.brand-filter {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	padding: 18px;
}
.brand-filter button, .chart-tabs button, .unit-buttons button {
	min-height: 36px;
	padding: 0 18px;
	border: 1px solid #e5e7eb;
	border-radius: 7px;
}
.brand-filter .is-active, .chart-tabs .is-active, .unit-buttons .is-active {
	background: linear-gradient(135deg, #e7a90a, #c98200);
	color: #fff;
	border-color: transparent;
}
.table-wrap { overflow-x: auto; }
.price-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}
.price-table th {
	padding: 15px 16px;
	text-align: left;
	font-size: 12px;
	text-transform: uppercase;
	color: #334155;
	background: #fff;
}
.price-table td {
	padding: 15px 16px;
	border-top: 1px solid #eef1f5;
	font-weight: 700;
}
.price-table tr:hover td { background: #fffaf0; }
.brand-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.brand-badge::before {
	content: "";
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: conic-gradient(from 40deg, var(--gold), #fff, var(--gold-dark), var(--gold));
}
.trend-pill {
	display: inline-flex;
	align-items: center;
	min-height: 26px;
	padding: 0 11px;
	border-radius: 999px;
	font-weight: 800;
	font-size: 12px;
}
.trend-pill.trend-up { color: var(--green); background: #dcfce7; }
.trend-pill.trend-down { color: var(--red); background: #fee2e2; }
.trend-pill.trend-neutral { color: #b77900; background: #fef3c7; }
.table-note {
	margin: 0;
	padding: 12px 18px;
	color: var(--muted);
	font-size: 12px;
	border-top: 1px solid #eef1f5;
}
.align-right { float: right; margin: 0 18px 18px 0; }

.market-grid, .news-knowledge-grid {
	display: grid;
	grid-template-columns: 1.55fr .95fr;
	gap: 18px;
}
.chart-card, .world-market, .news-card, .knowledge-card, .seo-content, .site-sidebar .gvt-card, .article-card, .post-card, .page-header, .not-found {
	padding: 22px;
}
.chart-card h2, .world-market h2, .site-sidebar h2, .news-card h2, .knowledge-card h2, .seo-content h2 {
	margin: 0 0 16px;
	font-size: 20px;
	color: var(--navy);
	text-transform: uppercase;
}
.chart-tabs {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 16px;
}
#gold-chart {
	width: 100%;
	height: 320px;
	display: block;
}
.chart-tooltip {
	position: fixed;
	z-index: 100;
	padding: 10px 12px;
	border-radius: 10px;
	background: #fff;
	border: 1px solid var(--border);
	box-shadow: var(--shadow);
	font-size: 12px;
	pointer-events: none;
}
.world-row {
	padding: 15px 0;
	border-bottom: 1px solid #eef1f5;
}
.world-row span, .world-row small { color: var(--muted); }
.world-row strong {
	display: block;
	font-size: 22px;
	color: var(--navy);
}
.world-row em {
	font-style: normal;
	font-weight: 800;
	font-size: 13px;
}
.sparkline {
	height: 72px;
	margin-top: 12px;
	background: linear-gradient(150deg, transparent 43%, #d99a00 44%, #d99a00 46%, transparent 47%), linear-gradient(#fff9ea, #fff);
	border-radius: 12px;
}

.site-sidebar label {
	display: grid;
	gap: 7px;
	font-size: 13px;
	color: #334155;
	font-weight: 700;
}
select, input[type="number"], input[type="email"], input[type="search"] {
	width: 100%;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	min-height: 42px;
	padding: 0 12px;
	background: #fff;
	color: var(--text);
}
.checkbox-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 9px;
	margin: 14px 0;
}
.checkbox-grid label {
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 8px 10px;
	background: #f8fafc;
	border-radius: 8px;
}
.compare-result {
	display: grid;
	gap: 8px;
	margin-top: 14px;
}
.compare-row {
	display: flex;
	justify-content: space-between;
	padding: 9px 10px;
	border-radius: 8px;
	background: #fffaf0;
	font-weight: 800;
}
.mini-tabs {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	margin-bottom: 16px;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	overflow: hidden;
}
.mini-tabs button { min-height: 42px; }
.mini-tabs .is-active { color: var(--gold-dark); background: #fff9ea; box-shadow: inset 0 -2px 0 var(--gold); }
.calculator-form { display: grid; gap: 13px; }
.calculator-result {
	padding: 12px;
	border-radius: 10px;
	background: linear-gradient(135deg, #fff, #fff7dc);
}
.calculator-result span { display: block; color: var(--muted); font-size: 13px; }
.calculator-result strong { color: var(--navy); }
.button-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}
.unit-buttons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.unit-buttons button { padding: 0 8px; }
.unit-card p, .newsletter-card p, .app-card p { color: var(--muted); font-size: 13px; margin: 10px 0 0; }
#newsletter-form { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.form-message { min-height: 20px; }
.form-message.is-success { color: var(--green); }
.form-message.is-error { color: var(--red); }
.app-card {
	display: grid;
	grid-template-columns: 1fr 95px;
	gap: 12px;
	overflow: hidden;
}
.store-buttons { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.store-buttons a {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	padding: 0 11px;
	border-radius: 7px;
	background: var(--navy);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
}
.phone-mock {
	width: 80px;
	height: 135px;
	border: 8px solid #111827;
	border-radius: 18px;
	background: linear-gradient(#071a2f 0 18%, #fff4d6 18% 100%);
	transform: rotate(12deg);
	box-shadow: 0 12px 24px rgba(7,26,47,.18);
}
.faq-item { border: 1px solid var(--border); border-radius: 9px; margin-bottom: 10px; overflow: hidden; }
.faq-item button {
	width: 100%;
	min-height: 46px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 0 14px;
	background: #fffaf0;
	border: 0;
	font-weight: 800;
	text-align: left;
	cursor: pointer;
}
.faq-answer { padding: 0 14px 14px; color: var(--muted); }

.card-heading {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	margin-bottom: 10px;
}
.card-heading h2 { margin: 0; }
.card-heading a { color: var(--gold-dark); font-weight: 800; font-size: 13px; }
.news-card, .knowledge-card { min-height: 330px; }
.news-item {
	display: grid;
	grid-template-columns: 100px 1fr;
	gap: 13px;
	padding: 10px 0;
	border-bottom: 1px solid #eef1f5;
}
.news-item img, .thumb-placeholder {
	display: block;
	width: 100px;
	height: 68px;
	object-fit: cover;
	border-radius: 8px;
	background: linear-gradient(135deg, #6b3f00, #f7c948 45%, #0f2743);
}
.news-item strong { display: block; line-height: 1.35; }
.news-item small, .knowledge-card span { color: var(--muted); font-size: 12px; }
.knowledge-card ul, .footer-menu { margin: 0; padding: 0; list-style: none; }
.knowledge-card li {
	padding: 14px 0 14px 28px;
	border-bottom: 1px solid #eef1f5;
	position: relative;
}
.knowledge-card li::before {
	content: "▧";
	position: absolute;
	left: 0;
	color: var(--gold);
}
.knowledge-card a { display: block; font-weight: 800; }
.seo-content h2:not(:first-child) { margin-top: 28px; }
.seo-content p { color: #334155; margin: 0; }

.inner-page {
	background: linear-gradient(#fffaf0, #fff 230px);
	min-height: 60vh;
}
.article-card h1, .page-header h1, .not-found h1 {
	margin: 0 0 12px;
	color: var(--navy);
	font-size: 36px;
	line-height: 1.18;
}
.entry-meta { color: var(--muted); font-size: 14px; margin-bottom: 18px; }
.entry-thumbnail img { border-radius: 14px; margin-bottom: 20px; }
.entry-content { color: #243244; }
.entry-content a { color: var(--gold-dark); font-weight: 800; }
.post-card {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 18px;
	padding: 18px;
}
.post-card__thumb img { width: 220px; height: 150px; object-fit: cover; border-radius: 12px; }
.post-card h2 { margin: 0 0 6px; }
.read-more { color: var(--gold-dark); font-weight: 800; }
.nav-links { display: flex; gap: 10px; flex-wrap: wrap; }
.nav-links a, .nav-links span {
	padding: 9px 13px;
	border: 1px solid var(--border);
	border-radius: 8px;
	background: #fff;
}
.narrow-page { padding: 60px 0; max-width: 760px; }

.site-footer {
	position: relative;
	background: radial-gradient(circle at 20% 0, rgba(217,154,0,.2), transparent 30%), linear-gradient(135deg, var(--navy), #03111f);
	color: #d7e1ef;
	padding: 44px 0 28px;
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.3fr .8fr .8fr 1.6fr;
	gap: 36px;
}
.site-footer h2 {
	margin: 0 0 14px;
	color: #f0b42c;
	font-size: 16px;
	text-transform: uppercase;
}
.site-footer p, .footer-menu a { color: #d7e1ef; font-size: 14px; }
.footer-menu li { margin-bottom: 8px; }
.social-links { display: flex; gap: 10px; margin-top: 18px; }
.social-links a {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255,255,255,.12);
	color: #fff;
	font-weight: 900;
}
.scroll-top {
	position: fixed;
	right: 24px;
	bottom: 24px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 2px solid var(--gold);
	background: var(--navy);
	color: var(--gold);
	font-size: 22px;
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
	transition: opacity .2s ease;
}
.scroll-top.is-visible { opacity: 1; pointer-events: auto; }

@media (max-width: 1120px) {
	.main-header__inner { flex-wrap: wrap; padding: 12px 0; }
	.primary-nav { order: 5; width: 100%; }
	.primary-menu { justify-content: center; }
	.primary-menu a { padding: 14px 10px; }
	.stats-grid { grid-template-columns: repeat(3, 1fr); }
	.content-grid { grid-template-columns: 1fr; }
	.site-sidebar { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
	.gvt-container { width: min(100% - 28px, 1200px); }
	.topbar__inner { align-items: flex-start; padding: 10px 0; }
	.topbar__links { display: none; }
	.menu-toggle { display: inline-block; }
	.primary-nav {
		display: none;
		background: #fff;
		border-top: 1px solid #eef1f5;
	}
	.primary-nav.is-open { display: block; }
	.primary-menu { display: grid; gap: 0; }
	.primary-menu a { padding: 13px 2px; border-bottom: 1px solid #eef1f5; }
	.header-search { order: 6; width: 100%; }
	.hero-grid { grid-template-columns: 1fr; min-height: auto; padding-top: 26px; }
	.hero-copy h1 { font-size: 34px; }
	.hero-visual { min-height: 250px; }
	.benefit-grid { grid-template-columns: repeat(2, 1fr); }
	.stats-grid { grid-template-columns: repeat(2, 1fr); margin-top: 18px; }
	.market-grid, .news-knowledge-grid, .site-sidebar, .footer-grid { grid-template-columns: 1fr; }
	.section-tabs { grid-template-columns: repeat(2, 1fr); }
	.price-table, .price-table thead, .price-table tbody, .price-table th, .price-table td, .price-table tr { display: block; }
	.price-table thead { display: none; }
	.price-table tr {
		margin: 12px;
		border: 1px solid var(--border);
		border-radius: 12px;
		overflow: hidden;
		background: #fff;
	}
	.price-table td {
		display: flex;
		justify-content: space-between;
		gap: 14px;
		padding: 12px 14px;
	}
	.price-table td::before {
		content: attr(data-label);
		color: var(--muted);
		font-weight: 700;
	}
	.post-card { grid-template-columns: 1fr; }
	.post-card__thumb img { width: 100%; height: auto; }
}

@media (max-width: 560px) {
	.main-header__inner { gap: 12px; }
	.brand img { width: 180px; }
	.favorite-button { display: none; }
	.hero-copy h1 { font-size: 30px; }
	.hero-kicker { font-size: 18px; }
	.benefit-grid, .stats-grid, .button-row, #newsletter-form { grid-template-columns: 1fr; }
	.stat-card strong { font-size: 22px; }
	.chart-card, .world-market, .news-card, .knowledge-card, .seo-content, .site-sidebar .gvt-card, .article-card, .post-card, .page-header, .not-found { padding: 18px; }
	.news-item { grid-template-columns: 82px 1fr; }
	.news-item img, .thumb-placeholder { width: 82px; height: 60px; }
	.unit-buttons { grid-template-columns: repeat(2, 1fr); }
	.hero-visual { transform: scale(.85); transform-origin: center top; margin-bottom: -36px; }
}

/* Demo fidelity polish: tighter finance-dashboard rhythm, closer to the provided mockup. */
:root {
	--shadow: 0 10px 28px rgba(7, 26, 47, 0.07);
	--radius: 14px;
}

body {
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
	font-size: 14px;
	line-height: 1.5;
	background: #fff;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

.gvt-container {
	width: min(1320px, calc(100% - 72px));
}

.gvt-card,
.stat-card {
	border-color: rgba(229, 217, 192, .78);
	box-shadow: 0 8px 24px rgba(7, 26, 47, .065);
}

.topbar {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0;
}

.topbar__inner {
	min-height: 40px;
}

.topbar__time::before {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	margin-right: 8px;
	border-radius: 50%;
	background: radial-gradient(circle at 35% 35%, #fff4c7 0 18%, var(--gold) 20% 100%);
	box-shadow: 0 0 0 2px rgba(217, 154, 0, .2);
}

.topbar__links {
	gap: 24px;
}

.topbar__button {
	padding: 5px 11px;
	border-radius: 5px;
}

.site-header {
	box-shadow: 0 4px 16px rgba(7, 26, 47, .08);
}

.main-header__inner {
	min-height: 86px;
	gap: 18px;
}

.brand img {
	width: 214px;
}

.primary-menu {
	gap: 4px;
}

.primary-menu a {
	position: relative;
	padding: 32px 11px 30px;
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
}

.primary-menu li:nth-child(1) a::before { content: "⌂"; }
.primary-menu li:nth-child(2) a::before { content: "◌"; }
.primary-menu li:nth-child(3) a::before { content: "⌁"; }
.primary-menu li:nth-child(4) a::before { content: "▦"; }
.primary-menu li:nth-child(5) a::before { content: "⇄"; }
.primary-menu li:nth-child(6) a::before { content: "⌘"; }
.primary-menu li:nth-child(7) a::before { content: "?"; }

.primary-menu a::before {
	margin-right: 6px;
	color: var(--gold-dark);
	font-weight: 800;
}

.header-search {
	width: 172px;
	height: 40px;
	padding-left: 15px;
}

.header-search input {
	min-height: 38px;
	font-size: 13px;
}

.header-search button {
	font-size: 0;
	position: relative;
	width: 28px;
	height: 28px;
}

.header-search button::before {
	content: "";
	position: absolute;
	width: 12px;
	height: 12px;
	left: 6px;
	top: 5px;
	border: 1.8px solid #64748b;
	border-radius: 50%;
}

.header-search button::after {
	content: "";
	position: absolute;
	width: 7px;
	height: 1.8px;
	left: 17px;
	top: 18px;
	background: #64748b;
	transform: rotate(45deg);
	border-radius: 2px;
}

.favorite-button {
	font-size: 0;
	width: 34px;
	height: 34px;
	position: relative;
}

.favorite-button::before {
	content: "☆";
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	font-size: 23px;
	color: var(--gold);
}

.hero-section {
	background:
		linear-gradient(90deg, #fff 0%, #fff9ea 45%, rgba(255, 218, 101, .62) 100%),
		radial-gradient(circle at 73% 42%, rgba(217,154,0,.22), transparent 38%);
}

.hero-grid {
	grid-template-columns: 1fr 1.18fr;
	min-height: 342px;
	gap: 26px;
	padding: 28px 0 56px;
}

.breadcrumb {
	display: none;
}

.hero-copy {
	padding-left: 2px;
}

.hero-copy h1 {
	font-size: 42px;
	line-height: 1.08;
	font-weight: 850;
	color: var(--navy);
}

.hero-copy h1::first-letter {
	color: var(--gold-dark);
}

.hero-kicker {
	margin: 10px 0 12px;
	font-size: 21px;
	font-weight: 500;
	color: #263447;
}

.hero-desc {
	max-width: 560px;
	margin-bottom: 30px;
	font-size: 15px;
	line-height: 1.65;
	color: #253349;
}

.benefit-grid {
	max-width: 610px;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
	font-size: 12px;
	line-height: 1.35;
}

.benefit-grid div {
	align-items: center;
	gap: 9px;
	font-weight: 750;
}

.benefit-grid span {
	width: 30px;
	height: 30px;
	flex: 0 0 30px;
	border-width: 2px;
	font-size: 0;
	position: relative;
}

.benefit-grid span::before {
	content: "";
	position: absolute;
	inset: 8px;
	border: 2px solid var(--gold);
	border-top-color: transparent;
	border-radius: 50%;
}

.hero-visual {
	min-height: 292px;
}

.hero-visual::before {
	inset: 34px 0 0;
	background-size: 34px 34px;
	opacity: .7;
}

.gold-bar {
	right: 212px;
	top: 22px;
	width: 138px;
	height: 208px;
	border-radius: 14px;
	transform: rotate(14deg);
}

.gold-stack {
	width: 170px;
	height: 58px;
	border-radius: 9px;
}

.gold-stack--one {
	right: 72px;
	bottom: 66px;
}

.gold-stack--two {
	right: 332px;
	bottom: 60px;
	width: 128px;
}

.gold-ring {
	right: 94px;
	bottom: 40px;
	width: 122px;
	height: 76px;
	border-width: 17px;
}

.growth-line {
	right: 2px;
	top: 36px;
	width: 590px;
	height: 172px;
	background:
		linear-gradient(143deg, transparent 49%, rgba(255,255,255,.92) 49.5%, rgba(255,255,255,.92) 50.4%, transparent 51%),
		repeating-linear-gradient(90deg, transparent 0 32px, rgba(255,255,255,.65) 32px 38px);
}

.stats-grid {
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 18px;
	margin-top: -48px;
}

.stat-card {
	min-height: 116px;
	gap: 15px;
	padding: 18px 18px;
	border-radius: 13px;
}

.stat-card h2 {
	margin-bottom: 5px;
	font-size: 11px;
	line-height: 1.2;
	font-weight: 850;
	letter-spacing: .01em;
}

.stat-card strong {
	font-size: 23px;
	font-weight: 850;
	letter-spacing: -.01em;
}

.stat-card span,
.stat-card small {
	font-size: 11px;
	line-height: 1.45;
	font-weight: 650;
}

.stat-icon {
	flex-basis: 46px;
	width: 46px;
	height: 46px;
}

.content-grid {
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 24px;
	padding-top: 25px;
	padding-bottom: 44px;
}

.main-column {
	gap: 24px;
}

.site-sidebar {
	gap: 18px;
}

.section-tabs {
	grid-template-columns: repeat(4, 1fr);
}

.section-tabs button {
	min-height: 52px;
	font-size: 13px;
	letter-spacing: .01em;
}

.brand-filter {
	gap: 10px;
	padding: 17px 18px 13px;
	align-items: center;
}

.brand-filter button,
.chart-tabs button,
.unit-buttons button {
	min-height: 34px;
	padding: 0 17px;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 750;
}

.price-table {
	font-size: 13px;
	line-height: 1.35;
}

.price-table th {
	padding: 13px 16px;
	font-size: 10px;
	font-weight: 850;
	line-height: 1.3;
	color: #334155;
}

.price-table th small {
	font-size: 10px;
	font-weight: 650;
	color: #6b7280;
}

.price-table td {
	padding: 13px 16px;
	font-weight: 750;
	color: #101827;
}

.brand-badge::before {
	width: 21px;
	height: 21px;
}

.trend-pill {
	min-height: 24px;
	padding: 0 10px;
	font-size: 11px;
}

.table-note {
	padding: 10px 18px;
	font-size: 11px;
}

.align-right {
	min-height: 36px;
	margin: 0 18px 16px 0;
	padding: 0 18px;
	font-size: 12px;
}

.market-grid,
.news-knowledge-grid {
	grid-template-columns: 1.5fr .95fr;
	gap: 18px;
}

.chart-card,
.world-market,
.news-card,
.knowledge-card,
.seo-content,
.site-sidebar .gvt-card,
.article-card,
.post-card,
.page-header,
.not-found {
	padding: 20px;
}

.chart-card h2,
.world-market h2,
.site-sidebar h2,
.news-card h2,
.knowledge-card h2,
.seo-content h2 {
	margin-bottom: 15px;
	font-size: 17px;
	line-height: 1.25;
	font-weight: 850;
	letter-spacing: .01em;
}

.chart-tabs {
	gap: 8px;
	margin-bottom: 14px;
}

#gold-chart {
	height: 286px;
}

.world-row {
	padding: 14px 0;
}

.world-row span {
	font-size: 12px;
	font-weight: 750;
	text-transform: uppercase;
}

.world-row strong {
	margin-top: 4px;
	font-size: 21px;
	font-weight: 850;
}

.world-row em {
	display: block;
	margin-top: 4px;
	font-size: 12px;
}

.sparkline {
	height: 58px;
	margin-top: 10px;
}

.site-sidebar .gvt-card {
	border-radius: 13px;
}

.site-sidebar label {
	gap: 6px;
	font-size: 12px;
	font-weight: 650;
}

select,
input[type="number"],
input[type="email"],
input[type="search"] {
	min-height: 40px;
	border-radius: 7px;
	font-size: 13px;
}

.checkbox-grid {
	gap: 8px;
	margin: 12px 0;
}

.checkbox-grid label {
	padding: 7px 9px;
	font-size: 12px;
}

.mini-tabs {
	margin-bottom: 14px;
	border-radius: 7px;
}

.mini-tabs button {
	min-height: 39px;
	font-size: 12px;
}

.calculator-form {
	gap: 11px;
}

.calculator-result {
	padding: 10px 11px;
	border-radius: 8px;
}

.button-row {
	gap: 10px;
}

.site-sidebar .gvt-button {
	min-height: 38px;
	font-size: 12px;
}

.unit-buttons {
	gap: 7px;
}

.unit-buttons button {
	padding: 0 10px;
}

.unit-card p,
.newsletter-card p,
.app-card p {
	font-size: 12px;
	line-height: 1.45;
}

#newsletter-form {
	gap: 8px;
}

#newsletter-form .gvt-button {
	padding: 0 15px;
}

.app-card {
	grid-template-columns: 1fr 84px;
	min-height: 126px;
}

.store-buttons a {
	min-height: 30px;
	padding: 0 10px;
	border-radius: 6px;
	font-size: 11px;
}

.phone-mock {
	width: 72px;
	height: 122px;
	border-width: 7px;
	border-radius: 16px;
}

.faq-item {
	margin-bottom: 8px;
	border-radius: 7px;
}

.faq-item button {
	min-height: 42px;
	padding: 0 12px;
	font-size: 12px;
	line-height: 1.35;
}

.faq-answer {
	padding: 0 12px 12px;
	font-size: 12px;
}

.card-heading {
	margin-bottom: 8px;
}

.card-heading a {
	font-size: 12px;
}

.news-card,
.knowledge-card {
	min-height: 300px;
}

.news-item {
	grid-template-columns: 96px 1fr;
	gap: 12px;
	padding: 9px 0;
}

.news-item img,
.thumb-placeholder {
	width: 96px;
	height: 64px;
	border-radius: 7px;
}

.news-item strong {
	font-size: 13px;
	font-weight: 750;
}

.knowledge-card li {
	padding: 12px 0 12px 26px;
}

.knowledge-card li::before {
	content: "";
	top: 15px;
	width: 13px;
	height: 13px;
	border: 1.5px solid var(--gold);
	border-radius: 3px;
	background: #fff8e2;
}

.knowledge-card a {
	font-size: 13px;
	font-weight: 750;
}

.seo-content {
	font-size: 15px;
	line-height: 1.72;
}

.seo-content h2:not(:first-child) {
	margin-top: 24px;
}

.site-footer {
	padding: 38px 0 26px;
}

.footer-grid {
	grid-template-columns: 1.25fr .8fr .8fr 1.45fr;
	gap: 34px;
}

.site-footer h2 {
	font-size: 14px;
	font-weight: 850;
}

.site-footer p,
.footer-menu a {
	font-size: 13px;
	line-height: 1.65;
}

@media (max-width: 1240px) {
	.gvt-container {
		width: min(1200px, calc(100% - 44px));
	}

	.main-header__inner {
		flex-wrap: wrap;
		padding: 10px 0;
	}

	.primary-nav {
		order: 5;
		width: 100%;
	}

	.primary-menu {
		justify-content: center;
	}

	.primary-menu a {
		padding: 12px 10px;
	}

	.content-grid {
		grid-template-columns: minmax(0, 1fr) 340px;
	}
}

@media (max-width: 980px) {
	.gvt-container {
		width: min(100% - 32px, 1200px);
	}

	.hero-grid {
		grid-template-columns: 1fr;
		padding-bottom: 34px;
	}

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

	.content-grid,
	.market-grid,
	.news-knowledge-grid,
	.site-sidebar,
	.footer-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 820px) {
	.topbar__inner {
		min-height: 38px;
		padding: 8px 0;
	}

	.main-header__inner {
		min-height: 74px;
	}

	.primary-menu a::before {
		display: inline-block;
		width: 18px;
	}

	.hero-copy h1 {
		font-size: 34px;
	}
}

@media (max-width: 560px) {
	.gvt-container {
		width: min(100% - 24px, 1200px);
	}

	.hero-copy h1 {
		font-size: 29px;
	}

	.hero-desc {
		font-size: 14px;
	}

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

	.stat-card {
		min-height: auto;
	}
}

/* Pixel-match pass for the supplied desktop mockup. */
@media (min-width: 1180px) {
	:root {
		--radius: 14px;
		--shadow: 0 9px 26px rgba(7, 26, 47, .075);
	}

	body {
		font-size: 14px;
		background: #fff;
	}

	.gvt-container {
		width: min(1458px, calc(100% - 78px));
	}

	.topbar {
		height: 50px;
		font-size: 13px;
	}

	.topbar__inner {
		min-height: 50px;
	}

	.main-header__inner {
		min-height: 110px;
		padding: 0;
		flex-wrap: nowrap;
	}

	.brand img {
		width: 250px;
	}

	.primary-nav {
		flex: 1 1 auto;
		display: flex;
		justify-content: center;
	}

	.primary-menu {
		gap: 20px;
	}

	.primary-menu a {
		padding: 43px 0 40px;
		font-size: 14px;
		line-height: 1;
	}

	.primary-menu a::before {
		margin-right: 7px;
		font-size: 17px;
		line-height: 0;
	}

	.header-search {
		width: 170px;
		height: 40px;
	}

	.favorite-button {
		width: 28px;
	}

	.hero-section {
		height: 398px;
		background:
			linear-gradient(90deg, #fff 0%, #fff9e9 43%, #f8c849 100%);
	}

	.hero-grid {
		grid-template-columns: 665px 1fr;
		min-height: 398px;
		padding: 0;
		gap: 0;
	}

	.hero-copy {
		padding: 44px 0 0 50px;
	}

	.hero-copy h1 {
		font-size: 43px;
		line-height: 1.06;
		font-weight: 900;
		letter-spacing: 0;
	}

	.hero-kicker {
		margin: 13px 0 14px;
		font-size: 21px;
		line-height: 1.25;
	}

	.hero-desc {
		max-width: 515px;
		margin-bottom: 34px;
		font-size: 14px;
		line-height: 1.75;
	}

	.benefit-grid {
		max-width: 604px;
		grid-template-columns: 128px 145px 142px 120px;
		gap: 18px;
		font-size: 12px;
	}

	.benefit-grid div {
		line-height: 1.35;
	}

	.benefit-grid span {
		width: 31px;
		height: 31px;
		flex-basis: 31px;
	}

	.hero-visual {
		min-height: 398px;
		overflow: visible;
	}

	.hero-demo-art {
		display: block;
		position: absolute;
		right: -2px;
		top: 0;
		width: 760px;
		height: 398px;
		object-fit: cover;
		object-position: center;
		mix-blend-mode: normal;
	}

	.hero-visual::before,
	.hero-visual .gold-stack,
	.hero-visual .gold-bar,
	.hero-visual .gold-ring,
	.hero-visual .growth-line {
		display: none;
	}

	.stats-grid {
		grid-template-columns: repeat(5, 1fr);
		gap: 20px;
		margin-top: -57px;
	}

	.stat-card {
		min-height: 140px;
		padding: 24px 22px;
		gap: 18px;
		border-radius: 14px;
	}

	.stat-icon {
		width: 56px;
		height: 56px;
		flex-basis: 56px;
	}

	.stat-card h2 {
		font-size: 12px;
		margin-bottom: 7px;
	}

	.stat-card strong {
		font-size: 26px;
		line-height: 1.05;
	}

	.stat-card span {
		font-size: 12px;
	}

	.stat-card small {
		margin-top: 7px;
		font-size: 12px;
	}

	.content-grid {
		grid-template-columns: minmax(0, 1fr) 430px;
		gap: 26px;
		padding-top: 29px;
	}

	.main-column {
		gap: 26px;
	}

	.site-sidebar {
		gap: 18px;
	}

	.gvt-card {
		border-radius: 14px;
	}

	.section-tabs button {
		min-height: 58px;
		font-size: 13px;
	}

	.brand-filter {
		padding: 18px 18px 15px;
		gap: 13px;
	}

	.brand-filter button {
		min-width: 58px;
		min-height: 34px;
		padding: 0 17px;
		font-size: 12px;
	}

	.brand-filter .filter-tools {
		margin-left: auto;
		min-width: 98px;
		background: #fff;
		color: #0f172a;
	}

	.price-table {
		font-size: 13px;
	}

	.price-table th {
		padding: 16px 17px 13px;
		font-size: 10.5px;
	}

	.price-table td {
		padding: 14px 17px;
		height: 55px;
	}

	.table-note {
		padding: 12px 18px;
	}

	.align-right {
		margin: 0 18px 18px 0;
		min-width: 98px;
		min-height: 34px;
	}

	.market-grid {
		grid-template-columns: minmax(0, 1.7fr) minmax(300px, .95fr);
		gap: 18px;
	}

	.chart-card,
	.world-market,
	.news-card,
	.knowledge-card,
	.seo-content,
	.site-sidebar .gvt-card {
		padding: 20px;
	}

	.chart-card h2,
	.world-market h2,
	.site-sidebar h2,
	.news-card h2,
	.knowledge-card h2 {
		font-size: 17px;
		margin-bottom: 17px;
	}

	.chart-tabs button {
		min-width: 66px;
		min-height: 36px;
		font-size: 12px;
	}

	#gold-chart {
		height: 292px;
	}

	.world-market {
		min-height: 356px;
	}

	.world-row {
		padding: 16px 0;
	}

	.site-sidebar .gvt-card {
		padding: 20px;
	}

	.site-sidebar label {
		font-size: 12px;
	}

	select,
	input[type="number"],
	input[type="email"],
	input[type="search"] {
		min-height: 38px;
		font-size: 12px;
	}

	.checkbox-grid {
		grid-template-columns: repeat(4, auto);
		gap: 7px;
	}

	.checkbox-grid label {
		padding: 6px 9px;
		border: 1px solid #e5e7eb;
	}

	.news-knowledge-grid {
		grid-template-columns: 1fr 1fr;
		gap: 20px;
	}

	.news-card,
	.knowledge-card {
		min-height: 318px;
	}

	.news-item {
		grid-template-columns: 106px 1fr;
		padding: 9px 0;
	}

	.news-item img,
	.thumb-placeholder {
		width: 106px;
		height: 68px;
	}

	.site-footer {
		padding-top: 36px;
	}

	.footer-grid {
		grid-template-columns: 1.18fr .72fr .72fr 1.5fr;
		gap: 56px;
	}
}

.hero-demo-art {
	display: none;
}

@media (min-width: 1180px) {
	.hero-demo-art {
		display: block;
	}
}

/* Home page functional controls - added for API/fallback interaction fixes */
.home-table-tools {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	margin: 14px 0;
	padding: 12px;
	border: 1px solid var(--color-border, #eadfca);
	border-radius: 14px;
	background: var(--color-gold-light, #fff4d6);
}
.home-table-tools input[type="search"] {
	min-width: 240px;
	flex: 1 1 260px;
	border: 1px solid var(--color-border, #eadfca);
	border-radius: 12px;
	padding: 11px 12px;
	font: inherit;
	background: #fff;
}
.home-table-tools .api-meta,
.home-api-meta {
	font-size: 13px;
	color: var(--color-muted, #6b7280);
}
.home-api-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
	margin: 8px 0 12px;
}
.home-api-meta b,
.home-table-tools .api-meta {
	color: var(--color-navy, #061a2f);
}
.world-market .world-row.market-row {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	align-items: center;
	padding: 11px 0;
	border-bottom: 1px solid var(--color-border, #eadfca);
}
.world-market .world-row.market-row span {
	font-weight: 700;
	color: var(--color-text, #111827);
}
.world-market .world-row.market-row em {
	font-style: normal;
	font-weight: 700;
}
@media (max-width: 767px) {
	.home-table-tools { align-items: stretch; }
	.home-table-tools input[type="search"],
	.home-table-tools .gvt-button,
	.home-table-tools button { width: 100%; flex-basis: 100%; }
	.home-api-meta { display: block; }
	.home-api-meta span { display: block; margin-bottom: 4px; }
}

/* Home price board refinement: remove redundant tab strip and present the table as a focused data card. */
.price-board-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 22px 24px 16px;
	border-bottom: 1px solid #eef1f5;
	background: linear-gradient(180deg, #fffdf8 0%, #ffffff 100%);
}
.price-board-head .eyebrow {
	margin: 0 0 4px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--gold-dark);
}
.price-board-head h2 {
	margin: 0;
	font-size: clamp(20px, 2vw, 26px);
	line-height: 1.25;
	color: var(--navy);
}
.price-board-head p:not(.eyebrow) {
	margin: 6px 0 0;
	color: var(--muted);
	font-size: 14px;
}
.gvt-link-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: max-content;
	padding: 10px 14px;
	border: 1px solid rgba(217, 154, 0, .28);
	border-radius: 999px;
	background: #fff8e6;
	color: var(--gold-dark);
	font-weight: 800;
	font-size: 14px;
	text-decoration: none;
	transition: .2s ease;
}
.gvt-link-action:hover {
	background: var(--gold);
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 10px 22px rgba(217,154,0,.18);
}
@media (max-width: 640px) {
	.price-board-head {
		align-items: flex-start;
		flex-direction: column;
		padding: 18px;
	}
	.gvt-link-action { width: 100%; }
}
