:root {
  --ink: #0f172a;
  --ink-soft: #172554;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --cyan: #0891b2;
  --green: #059669;
  --amber: #d97706;
  --red: #dc2626;
  --white: #ffffff;
  --surface: #f8fafc;
  --surface-blue: #eff6ff;
  --line: #dbe3ee;
  --line-dark: rgba(255, 255, 255, 0.16);
  --text: #1e293b;
  --muted: #64748b;
  --shadow: 0 18px 48px rgba(15, 23, 42, 0.14);
  --radius: 8px;
  --shell: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select {
  font-family: inherit;
}

button,
input,
select {
  font-size: 1rem;
}

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

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

svg {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue);
  border-radius: 4px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(100% - 32px, var(--shell));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--white);
  background: rgba(15, 23, 42, 0.97);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(12px);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 11px;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  color: var(--white);
  background: var(--blue);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.15;
}

.brand-copy strong {
  max-width: 210px;
  overflow: hidden;
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-copy span {
  margin-top: 4px;
  color: #94a3b8;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  cursor: pointer;
}

.primary-nav {
  position: absolute;
  top: calc(100% + 1px);
  right: 0;
  left: 0;
  display: none;
  padding: 10px 16px 16px;
  background: var(--ink);
  border-bottom: 1px solid var(--line-dark);
}

.primary-nav.is-open {
  display: grid;
}

.primary-nav a {
  padding: 11px 6px;
  color: #cbd5e1;
  font-size: 0.92rem;
  font-weight: 600;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.login-link:hover,
.login-link:focus-visible {
  color: var(--white);
}

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

.language-control select {
  height: 38px;
  padding: 0 30px 0 11px;
  color: #cbd5e1;
  background: var(--ink);
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  font-size: 0.82rem;
}

.login-link {
  color: #cbd5e1;
  font-size: 0.84rem;
  font-weight: 700;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background-color: var(--ink);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-grid {
  display: grid;
  gap: 44px;
  padding-block: 46px 38px;
}

.hero-copy {
  max-width: 680px;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.15rem, 8vw, 4.35rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
  word-break: keep-all;
}

.hero-lead {
  max-width: 630px;
  margin: 24px 0 0;
  color: #cbd5e1;
  font-size: 1.03rem;
  line-height: 1.75;
  word-break: keep-all;
}

.hero-points {
  display: grid;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #dbeafe;
  font-size: 0.9rem;
}

.hero-points svg {
  width: 17px;
  height: 17px;
  color: #34d399;
  stroke-width: 2.5;
}

.cta-panel {
  max-width: 650px;
  margin-top: 32px;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 240px;
  height: 52px;
  padding: 0 22px;
  color: var(--white);
  background: var(--blue);
  border: 1px solid #60a5fa;
  border-radius: 6px;
  font-size: 0.93rem;
  font-weight: 750;
  cursor: pointer;
  text-align: center;
}

.cta-primary:hover,
.cta-primary:focus-visible {
  background: var(--blue-dark);
}

.cta-primary.is-disabled {
  color: #bfdbfe;
  background: #1e3a8a;
  border-color: rgba(147, 197, 253, 0.4);
  cursor: not-allowed;
  opacity: 0.65;
}

.cta-primary svg {
  width: 17px;
  height: 17px;
}

.cta-destination,
.cta-note {
  margin: 10px 0 0;
  color: #94a3b8;
  font-size: 0.75rem;
  line-height: 1.55;
}

.cta-destination strong {
  color: #bfdbfe;
}

.cta-note.is-warning {
  color: #fcd34d;
}

.market-board {
  display: none;
  align-self: center;
  overflow: hidden;
  background: #111d36;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.board-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border-bottom: 1px solid var(--line-dark);
}

.board-head > div {
  display: grid;
  gap: 2px;
}

.board-head span {
  color: #94a3b8;
  font-size: 0.72rem;
}

.board-head strong {
  color: var(--white);
  font-size: 1rem;
}

.source-label {
  padding: 5px 8px;
  color: #a7f3d0 !important;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.28);
  border-radius: 4px;
  white-space: nowrap;
}

.board-chart {
  position: relative;
  height: 210px;
  padding: 22px 20px 0;
}

.board-chart svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.chart-caption {
  position: absolute;
  top: 12px;
  left: 20px;
  color: #94a3b8;
  font-size: 0.7rem;
}

.grid-line {
  fill: none;
  stroke: rgba(148, 163, 184, 0.12);
  stroke-width: 1;
}

.trend-area {
  fill: rgba(37, 99, 235, 0.16);
  stroke: none;
}

.trend-line {
  fill: none;
  stroke: #60a5fa;
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

.board-list {
  display: grid;
  grid-template-columns: 1fr;
  margin: 0;
  border-top: 1px solid var(--line-dark);
}

.board-list div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.board-list div:last-child {
  border-bottom: 0;
}

.board-list dt {
  color: #e2e8f0;
  font-size: 0.82rem;
  font-weight: 700;
}

.board-list dd {
  margin: 0;
  color: #94a3b8;
  font-size: 0.72rem;
  text-align: right;
}

.market-strip,
.news-section,
.checklist-section,
.methodology-section,
.trust-section,
.legal-section {
  padding-block: 72px;
}

.market-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.section-heading h2,
.methodology-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.75rem, 5vw, 2.55rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  word-break: keep-all;
}

.section-heading p,
.methodology-copy > p {
  max-width: 680px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.text-link {
  display: none;
  align-items: center;
  flex: 0 0 auto;
  gap: 7px;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 750;
}

.text-link svg {
  width: 17px;
  height: 17px;
}

.highlight-grid {
  display: grid;
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--line);
}

.highlight-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.highlight-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.highlight-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 6px;
}

.highlight-icon svg {
  width: 21px;
  height: 21px;
}

.highlight-icon.blue {
  color: var(--blue);
  background: #dbeafe;
}

.highlight-icon.green {
  color: var(--green);
  background: #d1fae5;
}

.highlight-icon.amber {
  color: var(--amber);
  background: #fef3c7;
}

.highlight-icon.cyan {
  color: var(--cyan);
  background: #cffafe;
}

.observation {
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 700;
}

.highlight-item h3 {
  margin: 20px 0 0;
  color: var(--ink);
  font-size: 1.13rem;
  font-weight: 800;
}

.highlight-item p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.data-caveat {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.news-section {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.news-list {
  display: grid;
  margin-top: 40px;
  border-top: 2px solid var(--ink);
}

.news-item {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.news-meta a {
  color: var(--blue);
  font-size: 0.73rem;
  font-weight: 800;
}

.news-meta time {
  color: var(--muted);
  font-size: 0.72rem;
}

.news-item h3 {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.5;
  word-break: keep-all;
}

.news-item h3 a:hover,
.news-item h3 a:focus-visible {
  color: var(--blue);
}

.news-item > p {
  display: -webkit-box;
  overflow: hidden;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.news-read {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 7px;
  margin-top: 20px;
  color: var(--blue);
  font-size: 0.79rem;
  font-weight: 750;
}

.news-read svg {
  width: 16px;
  height: 16px;
}

.checklist-section {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.checklist-list {
  margin-top: 40px;
  border-top: 2px solid var(--ink);
}

.checklist-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.checklist-number {
  padding-top: 3px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
}

.checklist-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.45;
  word-break: keep-all;
}

.checklist-copy > p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.checklist-copy dl {
  display: grid;
  gap: 0;
  margin: 20px 0 0;
  border-top: 1px solid var(--line);
}

.checklist-copy dl > div {
  display: grid;
  gap: 4px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.checklist-copy dl > div:last-child {
  border-bottom: 0;
}

.checklist-copy dt {
  margin: 0;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 800;
}

.checklist-copy dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

.methodology-section {
  color: var(--white);
  background: #172554;
}

.methodology-grid {
  display: grid;
  gap: 46px;
}

.methodology-copy h2 {
  color: var(--white);
}

.methodology-copy > p {
  color: #cbd5e1;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 24px;
}

.source-links a {
  color: #bfdbfe;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.method-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.method-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-dark);
}

.method-list > li > span {
  color: #60a5fa;
  font-size: 0.78rem;
  font-weight: 800;
}

.method-list h3 {
  margin: 0;
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
}

.method-list p {
  margin: 6px 0 0;
  color: #aebdd0;
  font-size: 0.86rem;
}

.trust-section {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-layout {
  display: grid;
  gap: 38px;
}

.trust-points {
  display: grid;
  border-top: 1px solid var(--line);
}

.trust-points > div {
  display: grid;
  gap: 7px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.trust-points strong {
  color: var(--ink);
  font-size: 0.92rem;
}

.trust-points span {
  color: var(--muted);
  font-size: 0.84rem;
}

.legal-section {
  background: var(--surface);
}

.legal-alert {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid #f3cf9b;
  border-left: 4px solid var(--amber);
  border-radius: var(--radius);
}

.legal-alert > svg {
  width: 27px;
  height: 27px;
  color: var(--amber);
}

.legal-alert h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 800;
}

.legal-alert p {
  margin: 8px 0 0;
  color: #475569;
  font-size: 0.84rem;
}

.legal-alert strong {
  color: var(--ink);
}

.legal-grid {
  display: grid;
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--line);
}

.legal-grid article {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 96px;
}

.legal-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
}

.legal-grid p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.75;
}

.site-footer {
  color: #94a3b8;
  background: var(--ink);
}

.footer-top {
  display: grid;
  gap: 26px;
  padding-block: 38px 28px;
  border-bottom: 1px solid var(--line-dark);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.footer-nav a {
  color: #cbd5e1;
  font-size: 0.8rem;
  font-weight: 650;
}

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

.operator-info {
  display: grid;
  gap: 6px;
  padding-block: 25px;
  color: #94a3b8;
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.75rem;
}

.operator-info span {
  overflow-wrap: anywhere;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 20px 30px;
  font-size: 0.73rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 5px;
  color: #cbd5e1;
}

.legal-page-body {
  background: var(--surface);
}

.legal-page-header .header-inner {
  min-height: 72px;
}

.legal-home-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #cbd5e1;
  font-size: 0.84rem;
  font-weight: 700;
}

.legal-home-link:hover,
.legal-home-link:focus-visible {
  color: var(--white);
}

.legal-home-link svg {
  width: 17px;
  height: 17px;
}

.legal-page-main {
  min-height: 62vh;
  padding-block: 48px 72px;
}

.legal-document {
  width: min(100%, 860px);
}

.legal-document-header {
  padding-bottom: 28px;
  border-bottom: 2px solid var(--ink);
}

.legal-document-header h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 7vw, 3.5rem);
  line-height: 1.15;
  letter-spacing: 0;
  word-break: keep-all;
}

.legal-updated {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.operator-warning {
  margin: 28px 0 0;
  padding: 16px 18px;
  color: #92400e;
  background: #fffbeb;
  border: 1px solid #f3cf9b;
  border-left: 4px solid var(--amber);
  border-radius: 6px;
  font-size: 0.85rem;
}

.legal-document-body {
  padding-top: 12px;
}

.legal-document-body h2 {
  margin: 34px 0 10px;
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1.4;
}

.legal-document-body p,
.legal-document-body li {
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.85;
}

.legal-document-body p {
  margin: 10px 0;
}

.legal-document-body ul {
  margin: 10px 0;
  padding-left: 22px;
}

.legal-document-body a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-table {
  width: 100%;
  margin-top: 16px;
  border-collapse: collapse;
  background: var(--white);
  border-top: 2px solid var(--ink);
}

.legal-table th,
.legal-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 0.86rem;
  line-height: 1.65;
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  width: 170px;
  color: var(--ink);
  background: #f1f5f9;
}

.legal-page-footer .footer-top {
  padding-block: 30px 24px;
}

.article-page-body {
  background: var(--white);
}

.article-page-main {
  min-height: 64vh;
  padding-block: 34px 80px;
}

.article-shell {
  width: min(100% - 32px, 900px);
}

.article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.76rem;
}

.article-breadcrumb a:hover,
.article-breadcrumb a:focus-visible {
  color: var(--blue);
}

.news-article {
  margin-top: 28px;
}

.article-header {
  padding-bottom: 30px;
  border-bottom: 2px solid var(--ink);
}

.article-category {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
}

.article-header h1 {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: clamp(2rem, 7vw, 3.45rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
  word-break: keep-all;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.76rem;
}

.article-editorial-note,
.article-risk-note {
  margin-top: 28px;
  padding: 18px 20px;
  border-left: 4px solid var(--blue);
  background: var(--surface-blue);
}

.article-editorial-note strong,
.article-risk-note strong {
  color: var(--ink);
  font-size: 0.84rem;
}

.article-editorial-note p,
.article-risk-note p {
  margin: 6px 0 0;
  color: #475569;
  font-size: 0.82rem;
  line-height: 1.75;
}

.article-content {
  padding-top: 18px;
  color: #334155;
  font-size: 1rem;
  line-height: 1.9;
  overflow-wrap: anywhere;
}

.article-content h2,
.article-content h3,
.article-content h4 {
  color: var(--ink);
  line-height: 1.4;
  word-break: keep-all;
}

.article-content h2 {
  margin: 48px 0 16px;
  font-size: 1.6rem;
}

.article-content h3 {
  margin: 34px 0 12px;
  font-size: 1.28rem;
}

.article-content h4 {
  margin: 28px 0 10px;
  font-size: 1.05rem;
}

.article-content p,
.article-content ul,
.article-content ol,
.article-content blockquote,
.article-content table,
.article-content figure {
  margin-block: 18px;
}

.article-content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-content img,
.article-content video,
.article-content iframe {
  max-width: 100%;
  height: auto;
}

.article-content figure {
  margin-inline: 0;
}

.article-content figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.6;
}

.article-content blockquote {
  padding: 4px 0 4px 20px;
  color: #475569;
  border-left: 3px solid #93c5fd;
}

.article-content table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

.article-content th,
.article-content td {
  min-width: 130px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  font-size: 0.84rem;
  text-align: left;
}

.article-content th {
  color: var(--ink);
  background: #f1f5f9;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin-top: 44px;
  padding-block: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
}

.article-tags strong {
  color: var(--ink);
}

.article-tags a {
  color: var(--blue);
}

.article-source-guide {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 2px solid var(--ink);
}

.article-source-guide h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.2rem;
}

.article-source-guide > p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.article-source-guide .source-links a {
  color: var(--blue);
}

.article-risk-note {
  border-left-color: var(--amber);
  background: #fffbeb;
}

.footer-bottom svg {
  width: 15px;
  height: 15px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid #93c5fd;
  outline-offset: 3px;
}

@media (min-width: 560px) {
  .operator-info {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 720px) {
  .shell {
    width: min(100% - 48px, var(--shell));
  }

  .market-board {
    display: block;
  }

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

  .highlight-item {
    padding: 28px;
    border-right: 1px solid var(--line);
  }

  .highlight-item:nth-child(2n) {
    border-right: 0;
  }

  .news-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 36px;
  }

  .news-item {
    padding-block: 30px;
  }

  .checklist-item {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 24px;
    padding: 34px 0;
  }

  .checklist-copy dl > div {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 20px;
  }

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

  .legal-grid article {
    padding: 28px;
    border-right: 1px solid var(--line);
  }

  .legal-grid article:nth-child(2n) {
    border-right: 0;
  }

  .footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .operator-info {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .legal-page-main {
    padding-block: 72px 96px;
  }

  .article-page-main {
    padding-block: 50px 112px;
  }
}

@media (max-width: 559px) {
  .legal-table,
  .legal-table tbody,
  .legal-table tr,
  .legal-table th,
  .legal-table td {
    display: block;
    width: 100%;
  }

  .legal-table th {
    padding-bottom: 8px;
    border-bottom: 0;
  }

  .legal-table td {
    padding-top: 8px;
  }
}

@media (min-width: 960px) {
  .header-inner {
    min-height: 76px;
  }

  .nav-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .primary-nav a {
    padding: 10px 15px;
    font-size: 0.84rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
    align-items: center;
    min-height: calc(100vh - 232px);
    max-height: 760px;
    padding-block: 48px;
  }

  .market-strip {
    padding-top: 48px;
  }

  .market-strip,
  .news-section,
  .checklist-section,
  .methodology-section,
  .trust-section,
  .legal-section {
    padding-block: 96px;
  }

  .text-link {
    display: inline-flex;
  }

  .highlight-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .highlight-item,
  .highlight-item:nth-child(2n) {
    padding: 30px 24px;
    border-right: 1px solid var(--line);
  }

  .highlight-item:first-child {
    padding-left: 0;
  }

  .highlight-item:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .news-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 42px;
  }

  .methodology-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
    align-items: start;
    gap: 88px;
  }

  .trust-layout {
    grid-template-columns: minmax(0, 0.8fr) minmax(540px, 1.2fr);
    align-items: start;
    gap: 90px;
  }

  .trust-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-points > div {
    min-height: 145px;
    padding: 26px;
    border-right: 1px solid var(--line);
  }

  .trust-points > div:nth-child(2n) {
    border-right: 0;
  }

  .legal-alert {
    grid-template-columns: 36px 1fr;
    padding: 30px 34px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
