/* 글로벌 뉴스 — Research Terminal UI (gn-* namespace) */
.gn-page {
  --gn-brand: #2457d6;
  --gn-brand-soft: #eef4ff;
  --gn-text: #172033;
  --gn-body: #344054;
  --gn-muted: #667085;
  --gn-border: #e4e7ec;
  --gn-surface: #fff;
  --gn-subtle: #f8fafc;
  --gn-up: #d92d20;
  --gn-down: #175cd3;
  --gn-ok: #027a48;
  --gn-warn: #b54708;
  padding-bottom: 3.5rem;
  max-width: 1440px;
}

.gn-page .na-sub { max-width: 40rem; }

.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;
}

/* —— Icons —— */
.gn-ico,
.gn-ico svg {
  display: block;
  width: 18px;
  height: 18px;
  color: inherit;
}
.gn-ico--inline {
  display: inline-flex;
  width: 16px;
  height: 16px;
  vertical-align: -0.15em;
  margin-right: 0.2rem;
}
.gn-ico--inline svg { width: 16px; height: 16px; }
.gn-ico-box {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--gn-brand-soft);
  color: var(--gn-brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.gn-ico-box--feed .gn-feed-dot {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gn-brand);
  box-shadow: 0 0 0 2px var(--gn-surface);
}

/* —— Hero (compact) —— */
.gn-hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.25rem;
  margin: 1.1rem 0 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--gn-border);
}
.gn-hero__eyebrow {
  margin: 0 0 0.2rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gn-muted);
}
.gn-hero__title {
  margin: 0;
  font-size: clamp(1.75rem, 2.4vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--gn-text);
  line-height: 1.15;
}
.gn-hero__sub {
  margin: 0.45rem 0 0;
  max-width: 36rem;
  font-size: 0.94rem;
  line-height: 1.5;
  color: var(--gn-body);
}
.gn-hero__flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.45rem;
  margin: 0.7rem 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gn-muted);
}
.gn-flow-step {
  display: inline-flex;
  align-items: center;
  color: var(--gn-body);
}
.gn-flow-arrow {
  width: 12px;
  height: 1px;
  background: var(--gn-border);
  position: relative;
}
.gn-flow-arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -3px;
  border: 3.5px solid transparent;
  border-left-color: #98a2b3;
}
.gn-hero__mode {
  margin: 0.55rem 0 0;
  font-size: 0.78rem;
  color: var(--gn-muted);
}
.gn-hero__aside {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.55rem;
}
.gn-hero__meta {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  color: var(--gn-muted);
  font-variant-numeric: tabular-nums;
}
.gn-live {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--gn-brand);
  padding: 0.12rem 0.35rem;
  border-radius: 4px;
  background: var(--gn-brand-soft);
}
.gn-live.is-pulse {
  animation: gn-live-pulse 1.1s ease-in-out 2;
}
.gn-refresh {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gn-border);
  border-radius: 10px;
  background: var(--gn-surface);
  color: var(--gn-body);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.gn-refresh:hover { border-color: #c8d0dc; }
.gn-refresh.is-spin .gn-ico {
  animation: gn-spin 360ms linear 1;
}
.gn-guide { position: relative; }
.gn-guide__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  border: none;
  background: transparent;
  color: var(--gn-brand);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 650;
  cursor: pointer;
  padding: 0.2rem 0;
}
.gn-guide__pop {
  position: absolute;
  right: 0;
  top: calc(100% + 0.35rem);
  z-index: 20;
  width: min(16rem, 80vw);
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--gn-border);
  border-radius: 10px;
  background: #172033;
  color: #f8fafc;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.08);
  font-size: 0.8rem;
  line-height: 1.45;
}
.gn-guide__pop ol {
  margin: 0;
  padding-left: 1.1rem;
}
.gn-guide__pop li + li { margin-top: 0.25rem; }

/* —— Control bar —— */
.gn-control {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 0 0 1.25rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--gn-border);
  border-radius: 12px;
  background: var(--gn-surface);
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.03);
}
.gn-control__row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}
.gn-control__label {
  flex: 0 0 2.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gn-muted);
}
.gn-seg {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
  min-width: 0;
}
.gn-seg--scroll {
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  max-width: 100%;
}
.gn-seg--scroll::-webkit-scrollbar { display: none; }
.gn-seg__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  flex: 0 0 auto;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--gn-muted);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 650;
  padding: 0.38rem 0.7rem;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}
.gn-seg__btn .gn-ico { transition: transform 180ms ease; }
.gn-seg__btn.is-active {
  background: #172033;
  color: #fff;
}
.gn-seg__btn.is-active .gn-ico { transform: scale(1); }
.gn-seg__btn:not(.is-active):hover { background: var(--gn-subtle); color: var(--gn-body); }
.gn-seg__btn:active .gn-ico { transform: scale(0.94); }

/* —— Section —— */
.gn-sec {
  margin: 0 0 2.4rem;
}
.gn-sec__head {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}
.gn-sec__head--row {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}
.gn-sec__head-left {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  min-width: 0;
  flex: 1 1 16rem;
}
.gn-sec__title {
  margin: 0;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--gn-text);
  line-height: 1.25;
}
.gn-sec--major .gn-sec__title {
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
}
.gn-sec__desc {
  margin: 0.28rem 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--gn-muted);
  max-width: 40rem;
}
.gn-sec__body {
  border: 1px solid var(--gn-border);
  border-radius: 12px;
  background: var(--gn-surface);
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.03);
}

.gn-duo {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.85fr);
  gap: 1.25rem;
  margin-bottom: 2.4rem;
  align-items: start;
}
.gn-duo > .gn-sec { margin-bottom: 0; }

/* —— Market strip —— */
.gn-market-strip.mb-strip {
  margin-bottom: 0.55rem;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.03);
}
.gn-market-strip .mb-strip__item {
  padding: 0.7rem 0.85rem;
}
.gn-market-strip .mb-strip__pct {
  font-size: 0.98rem;
}

/* —— Tip / tooltip —— */
.gn-tip {
  display: inline-flex;
  align-items: center;
  gap: 0.1rem;
  margin-left: 0.25rem;
  border: none;
  background: transparent;
  color: var(--gn-brand);
  font: inherit;
  font-size: 0.74rem;
  font-weight: 650;
  cursor: help;
  padding: 0;
  position: relative;
}
.gn-tip::after {
  content: attr(data-tip);
  position: absolute;
  left: 0;
  bottom: calc(100% + 6px);
  width: min(16rem, 70vw);
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  background: #172033;
  color: #f8fafc;
  font-size: 0.74rem;
  font-weight: 500;
  line-height: 1.4;
  opacity: 0;
  pointer-events: none;
  transform: translateY(2px);
  transition: opacity 120ms ease, transform 120ms ease;
  z-index: 30;
  text-align: left;
}
.gn-tip:hover::after,
.gn-tip:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

/* —— Issue rows —— */
.gn-issue-row {
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr) auto;
  gap: 0.55rem 0.65rem;
  width: 100%;
  padding: 0.85rem 1rem;
  border: none;
  border-bottom: 1px solid #eef2f6;
  background: transparent;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.gn-issue-row:last-child { border-bottom: none; }
.gn-issue-row:hover { background: var(--gn-subtle); }
.gn-issue-rank {
  font-size: 1.15rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: #98a2b3;
  line-height: 1.2;
  padding-top: 0.1rem;
}
.gn-issue-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gn-text);
  line-height: 1.3;
}
.gn-issue-meta {
  margin-top: 0.28rem;
  font-size: 0.76rem;
  color: var(--gn-muted);
  line-height: 1.4;
}
.gn-issue-markets {
  margin-top: 0.2rem;
  font-size: 0.74rem;
  color: #475467;
}
.gn-issue-link {
  margin-top: 0.35rem;
  font-size: 0.74rem;
  color: var(--gn-brand);
  font-weight: 650;
}
.gn-issue-count {
  font-size: 0.82rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--gn-body);
  white-space: nowrap;
}
.gn-issue-detail {
  display: none;
  grid-column: 2 / -1;
  margin-top: 0.15rem;
  font-size: 0.74rem;
  color: var(--gn-muted);
}
.gn-issue-row.is-open .gn-issue-detail { display: block; }
.gn-issue-more {
  margin-top: 0.35rem;
  border: none;
  background: transparent;
  color: var(--gn-brand);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 650;
  cursor: pointer;
  padding: 0;
}

/* —— Theme rows —— */
.mb-theme-row {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  border-bottom: 1px solid #eef2f6;
  background: transparent;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.mb-theme-row:last-child { border-bottom: none; }
.mb-theme-row:hover,
.mb-theme-row.is-active { background: var(--gn-subtle); }
.mb-theme-row.is-active {
  box-shadow: inset 3px 0 0 var(--gn-brand);
}
.mb-theme-top {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: baseline;
}
.mb-theme-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gn-text);
}
.mb-theme-meta {
  margin-top: 0.25rem;
  font-size: 0.74rem;
  color: var(--gn-muted);
  line-height: 1.4;
}
.gn-why {
  margin-top: 0.35rem;
  border: none;
  background: transparent;
  color: var(--gn-brand);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 650;
  cursor: pointer;
  padding: 0;
}
.gn-why-text {
  display: none;
  margin-top: 0.3rem;
  font-size: 0.74rem;
  color: #475467;
  line-height: 1.4;
}
.mb-theme-row.is-why-open .gn-why-text { display: block; }

.mb-bias { font-size: 0.72rem; font-weight: 700; white-space: nowrap; }
.mb-bias.is-good { color: var(--gn-ok); }
.mb-bias.is-mid { color: var(--gn-muted); }
.mb-bias.is-warn { color: var(--gn-warn); }

/* —— Filters (sector / market tabs) —— */
.gn-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin: 0 0 0.85rem;
}
.gn-filter {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.34rem 0.65rem;
  border: 1px solid var(--gn-border);
  border-radius: 8px;
  background: var(--gn-surface);
  color: var(--gn-muted);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 650;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}
.gn-filter.is-active {
  background: #172033;
  border-color: #172033;
  color: #fff;
}
.gn-filters--scroll {
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  max-width: 100%;
}
.gn-filters--scroll::-webkit-scrollbar { display: none; }
.gn-filters--scroll .gn-filter { flex: 0 0 auto; }

@media (min-width: 900px) {
  .gn-filters--scroll {
    flex-wrap: wrap;
    overflow: visible;
  }
}

/* —— Search —— */
.gn-search {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-width: min(100%, 18rem);
  height: 40px;
  padding: 0 0.75rem;
  border: 1px solid var(--gn-border);
  border-radius: 10px;
  background: var(--gn-surface);
  color: var(--gn-muted);
}
.gn-search:focus-within {
  border-color: var(--gn-brand);
  box-shadow: 0 0 0 3px rgba(36, 87, 214, 0.08);
}
.gn-search input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font: inherit;
  font-size: 0.86rem;
  color: var(--gn-text);
  height: 100%;
}

/* —— Major rows —— */
.gn-major-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--gn-border);
  border-radius: 12px;
  background: var(--gn-surface);
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.03);
}
.gn-major-row {
  display: grid;
  grid-template-columns: 9rem minmax(0, 1fr) auto;
  gap: 0.55rem 0.85rem;
  align-items: start;
  width: 100%;
  padding: 0.85rem 1rem;
  border: none;
  border-bottom: 1px solid #eef2f6;
  background: transparent;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.gn-major-row:last-child { border-bottom: none; }
.gn-major-row:hover { background: var(--gn-subtle); }
.gn-major-co {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.25;
  color: var(--gn-text);
}
.gn-major-co small {
  display: block;
  margin-top: 0.15rem;
  font-weight: 600;
  color: var(--gn-muted);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.gn-major-badge {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.08rem 0.35rem;
  border-radius: 999px;
  background: var(--gn-brand-soft);
  color: var(--gn-brand);
  font-size: 0.65rem;
  font-weight: 750;
  vertical-align: middle;
}
.gn-major-title {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--gn-text);
}
.gn-major-meta {
  margin-top: 0.25rem;
  font-size: 0.74rem;
  color: var(--gn-muted);
}
.gn-major-link {
  margin-top: 0.25rem;
  font-size: 0.74rem;
  color: var(--gn-brand);
  font-weight: 650;
}
.gn-major-stat {
  font-size: 0.74rem;
  color: var(--gn-muted);
  text-align: right;
  white-space: nowrap;
}
.gn-major-quote {
  display: block;
  font-weight: 700;
  margin-bottom: 0.15rem;
  font-variant-numeric: tabular-nums;
}
.gn-major-quote.is-muted { font-weight: 600; color: #98a2b3; }

.gn-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: contain;
  background: var(--gn-subtle);
  border: 1px solid var(--gn-border);
  flex: 0 0 auto;
}
.gn-logo--sm { width: 18px; height: 18px; border-radius: 4px; }
.gn-logo--fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 800;
  color: #475467;
}

/* —— Market scan —— */
.gn-block {
  border: 1px solid var(--gn-border);
  border-radius: 12px;
  background: var(--gn-surface);
  padding: 1rem 1.1rem 1.15rem;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.03);
}
.gn-market-scan__title {
  margin: 0.15rem 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gn-text);
}
.gn-watch {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.45rem 0 0.55rem;
}
.gn-watch-item {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.74rem;
  padding: 0.2rem 0.45rem;
  border-radius: 8px;
  background: var(--gn-subtle);
  color: #475467;
}
.gn-mini-news {
  margin: 0;
  padding: 0;
  list-style: none;
}
.gn-mini-news li {
  padding: 0.45rem 0;
  border-bottom: 1px solid #eef2f6;
  font-size: 0.86rem;
}
.gn-mini-news li:last-child { border-bottom: none; }
.gn-mini-news a {
  color: inherit;
  text-decoration: none;
  font-weight: 650;
}
.gn-mini-news a:hover { color: var(--gn-brand); }

/* —— Theme rank —— */
.gn-theme-rank {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gn-border);
  border-radius: 12px;
  background: var(--gn-surface);
  overflow: hidden;
}
.gn-theme-rank__row {
  display: grid;
  grid-template-columns: 2.2rem minmax(0, 1fr) auto auto;
  gap: 0.5rem 0.75rem;
  align-items: center;
  width: 100%;
  padding: 0.7rem 1rem;
  border: none;
  border-bottom: 1px solid #eef2f6;
  background: transparent;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.gn-theme-rank__row:last-child { border-bottom: none; }
.gn-theme-rank__row:hover { background: var(--gn-subtle); }
.gn-theme-rank__n {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: #98a2b3;
  font-size: 0.9rem;
}
.gn-theme-rank__name {
  font-weight: 650;
  font-size: 0.9rem;
  color: var(--gn-text);
}
.gn-theme-rank__meta {
  font-size: 0.74rem;
  color: var(--gn-muted);
  font-variant-numeric: tabular-nums;
}

/* —— Table —— */
.gn-table-wrap {
  border: 1px solid var(--gn-border);
  border-radius: 12px;
  background: var(--gn-surface);
  overflow-x: hidden;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.03);
}
.gn-table {
  width: 100%;
  border-collapse: collapse;
}
.gn-table thead th {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gn-muted);
  text-align: left;
  padding: 0.65rem 0.9rem;
  border-bottom: 1px solid var(--gn-border);
  background: var(--gn-subtle);
}
.gn-table tbody td {
  font-size: 0.875rem;
  padding: 0.85rem 0.9rem;
  border-bottom: 1px solid #eef2f6;
  vertical-align: middle;
}
.gn-table tbody tr:last-child td { border-bottom: none; }
.gn-table tbody tr:hover { background: var(--gn-subtle); }
.gn-stock-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: inherit;
  text-decoration: none;
  font-weight: 650;
}
.gn-stock-link .gn-ico {
  opacity: 0.45;
  transition: transform 160ms ease, opacity 160ms ease;
}
.gn-table tbody tr:hover .gn-stock-link .gn-ico {
  opacity: 1;
  transform: translate(1px, -1px);
}
.na-rel.is-direct {
  display: inline-block;
  padding: 0.12rem 0.4rem;
  border-radius: 6px;
  background: var(--gn-brand-soft);
  color: var(--gn-brand);
  font-size: 0.72rem;
  font-weight: 700;
}
.na-rel.is-related,
.na-rel.is-watch {
  display: inline-block;
  padding: 0.12rem 0.4rem;
  border-radius: 6px;
  background: #f2f4f7;
  color: #475467;
  font-size: 0.72rem;
  font-weight: 700;
}

/* —— Checklist —— */
.gn-check.mb-check {
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.03);
}
.gn-check .mb-check__item {
  display: grid;
  grid-template-columns: 1.1rem 1fr;
  gap: 0.35rem 0.45rem;
  align-items: start;
  background: var(--gn-subtle);
}
.gn-check__mark {
  color: var(--gn-ok);
  margin-top: 0.15rem;
}
.gn-check__mark.is-warn { color: var(--gn-warn); }
.gn-check__mark.is-mid { color: #98a2b3; }
.gn-check__mark svg {
  width: 16px;
  height: 16px;
}
.gn-check__mark.is-draw path {
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
  animation: gn-check-draw 280ms ease forwards;
}
.mb-check__label {
  grid-column: 2;
  display: block;
  font-size: 0.7rem;
  color: var(--gn-muted);
  margin-bottom: 0.1rem;
}
.mb-check__value {
  grid-column: 2;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gn-text);
}

/* —— News feed —— */
.gn-country {
  display: inline-block;
  min-width: 2rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gn-muted);
}
.gn-feed-maj {
  display: inline-block;
  margin-right: 0.25rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: #475467;
}
.gn-more-wrap {
  margin: 0.75rem 0 0;
  text-align: center;
}
.gn-spread {
  display: inline-block;
  margin-left: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #475467;
}
.gn-empty {
  padding: 1.5rem 1rem;
  text-align: center;
  color: var(--gn-muted);
  font-size: 0.88rem;
}
.gn-empty .gn-ico-box {
  margin: 0 auto 0.65rem;
}

/* —— Animations —— */
@keyframes gn-spin {
  to { transform: rotate(360deg); }
}
@keyframes gn-live-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
@keyframes gn-icon-enter {
  from { opacity: 0; transform: translateY(4px) scale(0.86); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes gn-zap-pop {
  0% { transform: scale(0.8); }
  55% { transform: scale(1.08); }
  100% { transform: scale(1); }
}
@keyframes gn-check-draw {
  to { stroke-dashoffset: 0; }
}
@keyframes gn-net-node {
  from { opacity: 0; }
  to { opacity: 1; }
}

[data-gn-reveal] .gn-ico-box[data-gn-anim] {
  opacity: 0;
}
[data-gn-reveal].is-inview .gn-ico-box[data-gn-anim="enter"] {
  animation: gn-icon-enter 340ms ease forwards;
}
[data-gn-reveal].is-inview .gn-ico-box[data-gn-anim="zap"] {
  animation: gn-zap-pop 400ms ease forwards;
}
[data-gn-reveal].is-inview .gn-ico-box[data-gn-anim="link"]:hover .gn-ico {
  animation: gn-link-nudge 180ms ease;
}
@keyframes gn-link-nudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(2px); }
}
.gn-ico[data-gn-ico="network"] .gn-net-n {
  opacity: 0;
}
[data-gn-reveal].is-inview .gn-ico[data-gn-ico="network"] .gn-net-n:nth-child(1) {
  animation: gn-net-node 200ms ease 0ms forwards;
}
[data-gn-reveal].is-inview .gn-ico[data-gn-ico="network"] .gn-net-n:nth-child(2) {
  animation: gn-net-node 200ms ease 70ms forwards;
}
[data-gn-reveal].is-inview .gn-ico[data-gn-ico="network"] .gn-net-n:nth-child(3) {
  animation: gn-net-node 200ms ease 140ms forwards;
}

@media (prefers-reduced-motion: reduce) {
  .gn-page *,
  .gn-page *::before,
  .gn-page *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
  [data-gn-reveal] .gn-ico-box[data-gn-anim],
  .gn-ico[data-gn-ico="network"] .gn-net-n {
    opacity: 1 !important;
  }
}

/* —— Responsive —— */
@media (max-width: 1023px) {
  .gn-duo { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .gn-hero {
    flex-direction: column;
    align-items: stretch;
  }
  .gn-hero__aside { align-items: flex-start; }
  .gn-control__row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.3rem;
  }
  .gn-control__label { flex: none; }
  .gn-seg { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
  .gn-seg::-webkit-scrollbar { display: none; }
  .gn-issue-row {
    grid-template-columns: 2rem minmax(0, 1fr);
  }
  .gn-issue-count { grid-column: 2; justify-self: start; }
  .gn-issue-markets--full { display: none; }
  .gn-major-row { grid-template-columns: 1fr auto; }
  .gn-major-co { grid-column: 1 / -1; }
  .gn-theme-rank__row {
    grid-template-columns: 2rem minmax(0, 1fr) auto;
  }
  .gn-theme-rank__row .gn-theme-rank__meta:last-child {
    grid-column: 2;
  }
  .gn-ico-box { width: 32px; height: 32px; }
  .gn-sec { margin-bottom: 1.85rem; }
}

@media (max-width: 430px) {
  .gn-hero__title { font-size: 1.7rem; }
  .gn-hero__flow { font-size: 0.72rem; }
}
