:root {
  --bg: #0e0f12;
  --bg-2: #14161a;
  --bg-elev: #16181d;
  --bg-elev-2: #1b1e24;
  --panel: #16181d;
  --panel-2: #1b1e24;
  --border: #23262d;
  --line: #23262d;
  --line-2: #2c2f37;
  --border-strong: #3A3A3F;
  --text: #e9eaee;
  --ink: #e9eaee;
  --ink-2: #b6b9c2;
  --ink-3: #7e818b;
  --text-muted: #b6b9c2;
  --text-dim: #7e818b;
  --accent: #f7931a;
  --accent-2: #ffb24a;
  --accent-soft: rgba(255, 122, 26, 0.12);
  --up: #42c98a;
  --good: #42c98a;
  --down: #ef5b5b;
  --bad: #ef5b5b;
  --serif: ui-serif, Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, monospace;
  --header-height: 68px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1680px; margin: 0 auto; padding: 0 48px; }

/* Accessibility */
.skip-to-content {
  position: absolute;
  left: 0;
  top: -100px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  z-index: 1001;
  font-weight: 600;
  border-radius: 0 0 6px 0;
  transition: top 0.15s;
}
.skip-to-content:focus { top: 0; color: #fff; outline: 2px solid #fff; outline-offset: 2px; }

/* Focus rings */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

/* -------- Ticker strip (mockup-aligned) -------- */
.ticker-strip {
  background: #101216;
  border-bottom: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--ink-2);
  height: 38px;
  display: flex;
  align-items: center;
}
.ticker-strip .container { display: flex; justify-content: flex-start; align-items: center; gap: 20px; height: 100%; overflow: hidden; }
.ticker-items { display: flex; gap: 22px; white-space: nowrap; align-items: baseline; min-width: 0; overflow: hidden; flex: 1 1 auto; }
.ticker-item { display: inline-flex; gap: 8px; align-items: baseline; }
.ticker-item .label { color: var(--ink-3); font-weight: 600; letter-spacing: 0.04em; }
.ticker-item .val { color: var(--ink); font-family: var(--mono); }
.ticker-item .chg { font-size: 11.5px; margin-left: 2px; }
.ticker-item .chg.up { color: var(--good); }
.ticker-item .chg.down { color: var(--bad); }
.ticker-meta { color: var(--ink-3); font-size: 11.5px; margin-left: auto; flex: 0 0 auto; white-space: nowrap; }
.ticker-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--good);
  font-weight: 600;
  letter-spacing: 0.06em;
}
.pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--good);
  box-shadow: 0 0 0 3px rgba(66, 201, 138, 0.18);
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

/* -------- Header -------- */
.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: transform 0.25s ease;
}
.site-header.header-hidden { transform: translateY(-100%); }
.main-nav .container { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; gap: 24px; }
.nav-logo {
  flex-shrink: 0;
  display: block;
  width: 300px;
  height: 47px;
  line-height: 0;
}
.nav-logo picture,
.nav-logo img {
  display: block;
  width: 300px;
  height: 47px;
}
.nav-links { display: flex; gap: 28px; font-size: 14px; font-weight: 500; list-style: none; }
.nav-links a { color: var(--text-muted); transition: color 0.15s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-actions { display: flex; gap: 12px; align-items: center; }
.currency-switch {
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  background: var(--panel);
  font-family: var(--mono);
  font-size: 12px;
}
.currency-switch button {
  background: transparent;
  border: none;
  color: var(--ink-2);
  padding: 6px 12px;
  border-radius: 7px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, color 0.15s;
}
.currency-switch button.active { background: var(--accent); color: #0e0f12; }
.nav-hamburger {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  width: 40px;
  height: 40px;
  border-radius: 6px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-hamburger:hover { color: var(--text); border-color: var(--border-strong); }

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  z-index: 200;
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: auto; }
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 80vw;
  height: 100vh;
  background: var(--bg-elev);
  border-left: 1px solid var(--border);
  padding: 80px 24px 24px;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.25s ease, visibility 0.25s ease;
  z-index: 201;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mobile-nav.open {
  display: flex;
  transform: translateX(0);
  visibility: visible;
}
.mobile-nav a {
  padding: 14px 0;
  font-size: 18px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  font-family: var(--serif);
}
.mobile-nav a.active { color: var(--text); }

/* -------- Masthead -------- */
.masthead { padding: 56px 0 40px; border-bottom: 1px solid var(--border); }
.masthead-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: end;
}
.crumb {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin-bottom: 18px;
}
.crumb .sep { margin: 0 8px; opacity: 0.4; }
h1.price-h1 {
  font-family: var(--serif);
  font-size: 48px;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.subhead {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 560px;
  margin-bottom: 32px;
}
.price-panel { display: flex; align-items: baseline; gap: 20px; flex-wrap: wrap; }
.price-big {
  font-family: var(--mono);
  font-size: 72px;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
}
.price-unit { color: var(--text-muted); font-size: 36px; font-weight: 400; }
.price-change {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 16px;
  padding: 8px 14px;
  border-radius: 4px;
  background: rgba(74, 222, 128, 0.08);
  color: var(--up);
  border: 1px solid rgba(74, 222, 128, 0.18);
}
.price-change.down {
  background: rgba(248, 113, 113, 0.08);
  color: var(--down);
  border-color: rgba(248, 113, 113, 0.18);
}
.updated-meta { margin-top: 20px; font-family: var(--mono); font-size: 12px; color: var(--text-dim); display: flex; gap: 20px; flex-wrap: wrap; }

.sparkline-wrap { border-left: 1px solid var(--border); padding-left: 56px; }
.sparkline-label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
}
.sparkline { width: 100%; height: 140px; display: block; }

/* -------- Metrics (mockup-aligned panel grid) -------- */
.metrics-section { padding: 12px 0 30px; }
.metrics-section .section-head { margin-bottom: 14px; }
.section-intro {
  max-width: 760px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.65;
  margin: -2px 0 18px;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.stat {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
}
.stat-head {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  margin-bottom: 14px;
}
.stat-icon {
  display: inline-flex;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(255, 122, 26, 0.12);
  align-items: center;
  justify-content: center;
}
.stat-icon svg { width: 16px; height: 16px; }
.stat .k {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  margin-bottom: 0;
}
.stat .v {
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.15;
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}
.stat .v .u { font-family: var(--mono); font-size: 12px; color: var(--ink-3); font-weight: 400; letter-spacing: 0; }
.stat .sub { font-family: var(--sans); font-size: 11.5px; color: var(--ink-3); line-height: 1.4; }

/* -------- Chart -------- */
.chart-section { padding: 48px 0; border-bottom: 1px solid var(--border); }
.section-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 28px; gap: 16px; flex-wrap: wrap; }
.section-kicker {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 14px;
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--accent);
}
h2.section-h {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.timeframes {
  display: flex;
  gap: 2px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2px;
  font-family: var(--mono);
  font-size: 12px;
}
.timeframes button {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 6px 14px;
  cursor: pointer;
  font-family: inherit;
  border-radius: 4px;
}
.timeframes button.active { background: var(--bg-elev-2); color: var(--text); }

.chart-container {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  position: relative;
}
.chart { width: 100%; height: 340px; display: block; cursor: crosshair; }
.chart-tooltip {
  position: absolute;
  display: none;
  background: var(--bg-elev-2);
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  padding: 10px 14px;
  font-family: var(--mono);
  pointer-events: none;
  z-index: 5;
  min-width: 170px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.chart-tooltip .tt-date { font-family: var(--sans); font-size: 10px; font-weight: 600; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 6px; }
.chart-tooltip .tt-price { font-size: 16px; font-weight: 500; color: var(--text); margin-bottom: 2px; letter-spacing: -0.01em; }
.chart-tooltip .tt-chg { font-size: 11px; color: var(--up); }
.chart-tooltip .tt-chg.down { color: var(--down); }
.hero-chart-title {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 6px;
  letter-spacing: 0;
}

/* -------- Converter -------- */
.converter-section { padding: 48px 0; border-bottom: 1px solid var(--border); }
.converter-intro { max-width: 720px; color: var(--text-muted); font-size: 17px; line-height: 1.7; margin: -12px 0 24px; }
.amount-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 920px;
  margin: 0 0 28px;
}
.amount-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
}
.amount-label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.amount-card strong {
  display: block;
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.25;
}
.rate-table-wrap {
  overflow-x: auto;
  margin: -4px 0 30px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-elev);
}
.rate-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}
.rate-table th,
.rate-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-size: 14px;
  line-height: 1.45;
}
.rate-table th {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 500;
}
.rate-table td {
  color: var(--text-muted);
}
.rate-table td:first-child,
.rate-table td:nth-child(2),
.rate-table td:nth-child(3) {
  font-family: var(--mono);
  color: var(--text);
  white-space: nowrap;
}
.rate-table tr:last-child td { border-bottom: none; }
.rate-up { color: var(--up) !important; }
.rate-down { color: var(--down) !important; }
.converter-subheading {
  margin-top: 16px;
  margin-bottom: 20px;
}
.converter {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  max-width: 720px;
}
.conv-input { display: flex; flex-direction: column; gap: 6px; }
.conv-input label { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-dim); }
.conv-input .row { display: flex; gap: 8px; align-items: center; background: var(--bg); border: 1px solid var(--border); border-radius: 6px; padding: 10px 14px; }
.conv-input input {
  background: transparent;
  border: none;
  color: var(--text);
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 500;
  flex: 1;
  outline: none;
  width: 100%;
}
.conv-input .cur-chip { font-family: var(--mono); font-size: 13px; color: var(--text-muted); background: var(--bg-elev-2); border-radius: 4px; padding: 4px 10px; }
.swap-btn {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-muted);
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: grid; place-items: center;
  transition: border-color 0.15s;
}
.swap-btn:hover { border-color: var(--accent); color: var(--accent); }
.converter-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin-top: 14px;
}
.converter-result-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
}
.converter-result-card span {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.converter-result-card strong {
  display: block;
  font-family: var(--mono);
  font-size: 18px;
  line-height: 1.25;
  color: var(--text);
  font-weight: 600;
}

.live-data-section {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}

/* -------- Insight cards -------- */
.insight-section {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.insight-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px;
}
.insight-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 400;
  margin: 0 0 12px;
  color: var(--text);
  letter-spacing: 0;
}
.insight-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

/* -------- Actions / wallets -------- */
.actions-section { padding: 56px 0; border-bottom: 1px solid var(--border); }
.actions-intro { max-width: 720px; color: var(--text-muted); font-size: 17px; line-height: 1.7; margin: -8px 0 32px; }
.action-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}
.action-item {
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: block;
  transition: background 0.15s;
  color: var(--text);
}
.action-item:last-child { border-right: none; }
.action-item:hover { background: var(--bg-elev); color: var(--text); }
.action-num { font-family: var(--mono); font-size: 11px; color: var(--text-dim); letter-spacing: 0.1em; margin-bottom: 14px; display: block; }
.action-item h3 { font-family: var(--serif); font-size: 24px; font-weight: 400; line-height: 1.2; margin-bottom: 8px; }
.action-item p { font-size: 14px; color: var(--text-muted); line-height: 1.55; }
.action-arrow { font-family: var(--mono); font-size: 12px; color: var(--accent); margin-top: 16px; display: inline-block; }

/* -------- Editorial -------- */
.editorial { padding: 72px 0; border-bottom: 1px solid var(--border); }
.editorial-banner {
  width: 100%;
  aspect-ratio: 5 / 1;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  margin-bottom: 16px;
  overflow: hidden;
}
.editorial-banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.editorial-banner-caption {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 10px;
  margin-bottom: 48px;
  font-style: normal;
  max-width: 800px;
}
.editorial-grid { display: grid; grid-template-columns: 320px 1fr; gap: 80px; }
.editorial-meta { padding-top: 8px; }
.editorial-meta .label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 14px;
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--accent);
}
.editorial-meta h2 { font-family: var(--serif); font-size: 38px; line-height: 1.1; font-weight: 400; letter-spacing: -0.01em; margin-bottom: 18px; }
.editorial-meta .byline { font-size: 13px; color: var(--text-muted); border-top: 1px solid var(--border); padding-top: 16px; margin-top: 20px; }
.editorial-body { font-family: var(--serif); font-size: 19px; line-height: 1.65; color: #D4D4D6; }
.editorial-body p { margin-bottom: 22px; }
.editorial-body a { color: var(--accent); border-bottom: 1px solid rgba(255, 107, 26, 0.3); }
.editorial-body a:hover { border-bottom-color: var(--accent); }

/* -------- Articles -------- */
.articles { padding: 56px 0; border-bottom: 1px solid var(--border); }
.articles-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}
.article-card {
  padding: 0;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  min-height: 280px;
  color: var(--text);
}
.article-card:nth-child(1) { grid-row: span 2; }
.article-card:last-child { border-right: none; }
.article-card:hover { color: var(--text); }
.article-card:hover h3 { color: var(--accent); }
.article-card-body { padding: 24px 28px 28px; display: flex; flex-direction: column; flex: 1; }
.article-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--bg-elev);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  display: block;
}
.article-image img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.92) contrast(1.04); transition: transform 0.4s; }
.article-card:hover .article-image img { transform: scale(1.02); }
.article-card:nth-child(1) .article-image { aspect-ratio: 16 / 11; }
.article-card .cat { font-family: var(--sans); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); margin-bottom: 14px; }
.article-card h3 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; line-height: 1.15; margin-bottom: 12px; transition: color 0.15s; }
.article-card:nth-child(1) h3 { font-size: 36px; }
.article-card:not(:nth-child(1)) h3 { font-size: 22px; }
.article-card .excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: auto; }
.article-card .meta { font-family: var(--mono); font-size: 11px; color: var(--text-dim); padding-top: 20px; margin-top: 20px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; }

/* -------- News -------- */
.news { padding: 56px 0; border-bottom: 1px solid var(--border); }
.news-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  border-top: 1px solid var(--border-strong);
  padding-top: 32px;
}
.news-lead { display: flex; flex-direction: column; color: var(--text); }
.news-lead:hover h3 { color: var(--accent); }
.news-lead-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  margin-bottom: 20px;
  overflow: hidden;
}
.news-lead-image img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.92) contrast(1.04); }
.news-meta-line {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 14px;
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.news-meta-line .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text-dim); }
.news-meta-line .cat { color: var(--accent); }
.news-lead h3 { font-family: var(--serif); font-size: 32px; line-height: 1.15; font-weight: 500; letter-spacing: -0.01em; margin-bottom: 12px; color: var(--text); transition: color 0.15s; }
.news-lead p { font-size: 16px; line-height: 1.6; color: var(--text-muted); margin-bottom: 16px; }
.news-lead .byline { font-family: var(--sans); font-size: 12px; color: var(--text-dim); letter-spacing: 0.04em; }
.news-list { display: flex; flex-direction: column; }
.news-item { padding: 22px 0; border-bottom: 1px solid var(--border); display: block; color: var(--text); }
.news-item:first-child { padding-top: 0; }
.news-item:last-child { border-bottom: none; }
.news-item h4 { font-family: var(--serif); font-size: 20px; line-height: 1.25; font-weight: 500; margin-bottom: 8px; color: var(--text); transition: color 0.15s; }
.news-item p { font-size: 14px; line-height: 1.55; color: var(--text-muted); margin-bottom: 10px; }
.news-item:hover h4 { color: var(--accent); }

/* -------- FAQ -------- */
.faq { padding: 72px 0; border-bottom: 1px solid var(--border); }
.faq-grid { display: grid; grid-template-columns: 300px 1fr; gap: 80px; }
.faq-grid .label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 14px;
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--accent);
}
.faq-grid h2 { font-family: var(--serif); font-size: 38px; line-height: 1.1; font-weight: 400; }
.faq-item { border-bottom: 1px solid var(--border); padding: 22px 0; }
.faq-item:first-child { padding-top: 0; }
.faq-item summary {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.3;
  font-weight: 400;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--mono);
  font-size: 28px;
  color: var(--text-muted);
  font-weight: 300;
  transition: transform 0.2s;
  line-height: 1;
}
.faq-item[open] summary::after { content: "-"; color: var(--accent); }
.faq-answer { margin-top: 16px; font-size: 15px; color: var(--text-muted); line-height: 1.7; }
.faq-answer a { color: var(--accent); }

/* -------- Breadcrumbs -------- */
.breadcrumbs { padding: 20px 0; border-bottom: 1px solid var(--border); font-size: 13px; color: var(--text-muted); }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.breadcrumbs li { display: inline-flex; align-items: center; gap: 8px; }
.breadcrumbs .sep { color: var(--text-dim); }
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs .current { color: var(--text); }

/* -------- Footer -------- */
.site-footer { padding: 56px 0 40px; font-size: 14px; color: var(--text-muted); border-top: 1px solid var(--border); }
.site-footer > .container { max-width: 1800px; }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.6fr) repeat(4, minmax(150px, 1fr)) minmax(250px, 1.25fr);
  gap: clamp(28px, 3vw, 56px);
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.footer-grid h3,
.footer-grid h4 {
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  white-space: nowrap;
}
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-grid ul a:hover { color: var(--accent); }
.footer-about { font-size: 14px; color: var(--text-muted); line-height: 1.6; max-width: 390px; }
.footer-logo {
  display: block;
  width: 220px;
  height: 35px;
  line-height: 0;
  margin-bottom: 16px;
}
.footer-logo picture,
.footer-logo img {
  display: block;
  width: 220px;
  height: 35px;
}
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-dim);
}
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a:hover { color: var(--accent); }

/* -------- Article page layout (Masterskapssidan-inspired) -------- */

/* Dark hero header ovanför innehållet */
.article-page { padding: 0 0 96px; background: var(--bg); }
.article-page > .container { padding-left: 24px; padding-right: 24px; }

/* HERO-block: stor H1, kategori, meta */
.article-page .article-hero,
.article-page .article-header {
  padding: 56px 0 56px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
}
.article-page .article-hero > *,
.article-page .article-header > * { max-width: 1320px; margin-left: auto; margin-right: auto; }
.article-page .article-header > * { max-width: 820px; }

.article-page h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 4.6vw, 76px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--text);
  max-width: 820px;
}

.article-page .lead,
.article-page .article-lead {
  font-family: var(--serif);
  font-size: clamp(20px, 1.45vw, 26px);
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 0;
  max-width: 820px;
  overflow-wrap: break-word;
}

.article-page .byline,
.article-page .article-kicker {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 24px;
  display: inline-block;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
}

.article-page .article-date-line {
  max-width: 820px;
}

.article-page .article-meta {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-dim);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  max-width: 820px;
}
.article-page .article-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text-dim); display: inline-block; }

/* BODY-block: 720px max-width, editorial serif */
.article-page .article-body,
.article-page .article-section {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.article-page .article-section + .article-section { margin-top: 16px; }

/* Heading-hierarki MED TYDLIG SKILLNAD */
.article-page h2 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 64px auto 20px;
  color: var(--text);
  max-width: 720px;
  padding-top: 8px;
  position: relative;
}
.article-page h2::before {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 18px;
}

.article-page h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  margin: 40px auto 14px;
  color: var(--text);
  max-width: 720px;
  letter-spacing: -0.01em;
}

.article-page h4 {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  margin: 28px auto 10px;
  color: var(--text-muted);
  max-width: 720px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Brödtext */
.article-page p {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.75;
  color: #D4D4D6;
  margin: 0 auto 22px;
  max-width: 720px;
}

.article-page ul,
.article-page ol {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.75;
  color: #D4D4D6;
  margin: 0 auto 24px;
  padding-left: 24px;
  max-width: 696px;
}
.article-page li { margin-bottom: 10px; }
.article-page li::marker { color: var(--accent); }

/* Länkar */
.article-page a {
  color: var(--accent);
  border-bottom: 1px solid rgba(255, 107, 26, 0.35);
  transition: border-color 0.15s;
}
.article-page a:hover { border-bottom-color: var(--accent); }

.article-page strong { color: var(--text); font-weight: 600; }
.article-page em { font-style: normal; color: var(--text); font-weight: 500; }

/* Inline code */
.article-page code {
  font-family: var(--mono);
  font-size: 0.85em;
  background: var(--bg-elev);
  padding: 2px 7px;
  border-radius: 4px;
  border: 1px solid var(--border);
  color: var(--text);
}

/* Code-block */
.article-page pre {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 20px;
  overflow-x: auto;
  margin: 28px auto;
  max-width: 720px;
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.6;
}
.article-page pre code { background: none; border: none; padding: 0; font-size: inherit; }

/* Tabeller (editorial-style) */
.article-page table {
  width: 100%;
  max-width: 720px;
  margin: 32px auto;
  border-collapse: collapse;
  font-family: var(--sans);
  font-size: 14px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.article-page table th,
.article-page table td {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.article-page table tr:last-child td { border-bottom: none; }
.article-page table th {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  background: var(--bg-elev-2);
  border-bottom: 1px solid var(--border-strong);
}
.article-page table tbody tr:hover td { background: var(--bg-elev-2); }

/* Figures */
.article-page figure { margin: 36px auto; max-width: 720px; }
.article-page figure img { width: 100%; height: auto; border-radius: 8px; }
.article-page figcaption {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 12px;
  text-align: left;
  font-style: normal;
  padding-left: 12px;
  border-left: 2px solid var(--accent);
}

/* Blockquote */
.article-page blockquote {
  border-left: 3px solid var(--accent);
  padding: 8px 0 8px 24px;
  margin: 32px auto;
  max-width: 720px;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.5;
  color: var(--text);
  font-style: normal;
}
.article-page blockquote p { font-size: inherit; margin-bottom: 0; color: inherit; }

/* FAQ inom artikel */
.article-page .faq-list { max-width: 720px; margin: 16px auto 0; }
.article-page .faq-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.article-page .faq-item:first-child { border-top: 1px solid var(--border); }
.article-page .faq-item summary {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
}
.article-page .faq-item summary::-webkit-details-marker { display: none; }
.article-page .faq-item summary::after {
  content: "+";
  font-family: var(--mono);
  font-size: 24px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
}
.article-page .faq-item[open] summary::after { content: "-"; color: var(--accent); }
.article-page .faq-item summary h3 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin: 0;
  color: inherit;
  font-family: inherit;
  display: inline;
  max-width: none;
}
.article-page .faq-answer,
.article-page .faq-item[open] > div {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-top: 14px;
}
.article-page .faq-answer p,
.article-page .faq-item[open] > div p {
  font-size: inherit;
  color: inherit;
  margin-bottom: 12px;
  line-height: inherit;
}

/* Article section wrapper (used by some subagent pages) */
.article-page .article-section h2:first-child { margin-top: 0; }
.article-page .article-section h2 { margin-top: 56px; }
.article-page .article-section:first-of-type h2 { margin-top: 24px; }

/* Article hero image (1600×900 → responsive) */
.article-page .hero-image {
  max-width: 1040px;
  width: 100%;
  margin: 0 auto 56px;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 4px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
}
.article-page .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.95) contrast(1.03);
}
.article-page .hero-image + .hero-caption {
  max-width: 720px;
  margin: -40px auto 40px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--text-dim);
  padding-left: 12px;
  border-left: 2px solid var(--accent);
}

/* FACT BOX - nyckeldata-kort */
.article-page .fact-box {
  max-width: 720px;
  margin: 32px auto;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 24px 28px;
  border-radius: 4px;
}
.article-page .fact-box .fact-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
  display: block;
}
.article-page .fact-box h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 12px;
  text-transform: none;
  letter-spacing: -0.005em;
  max-width: none;
}
.article-page .fact-box ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: none;
}
.article-page .fact-box ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 0;
}
.article-page .fact-box ul li:last-child { border-bottom: none; }
.article-page .fact-box ul li::marker { content: none; }
.article-page .fact-box ul li strong { color: var(--text); font-family: var(--mono); font-size: 14px; white-space: nowrap; }
.article-page .fact-box p { font-family: var(--sans); font-size: 15px; line-height: 1.65; color: var(--text-muted); margin-bottom: 0; max-width: none; }

/* INFO CALLOUT - tips/warning/note */
.article-page .info-callout {
  max-width: 720px;
  margin: 28px auto;
  padding: 18px 22px;
  background: var(--bg-elev);
  border-left: 3px solid var(--accent);
  border-radius: 0 4px 4px 0;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  display: flex;
  gap: 14px;
  align-items: start;
}
.article-page .info-callout.warning { border-left-color: var(--down); }
.article-page .info-callout.tip { border-left-color: var(--up); }
.article-page .info-callout .callout-icon {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  flex-shrink: 0;
  min-width: 60px;
  padding-top: 1px;
}
.article-page .info-callout.warning .callout-icon { color: var(--down); }
.article-page .info-callout.tip .callout-icon { color: var(--up); }
.article-page .info-callout p { font-size: inherit; margin: 0 0 10px; line-height: inherit; max-width: none; color: inherit; font-family: inherit; }
.article-page .info-callout p:last-child { margin-bottom: 0; }

/* STAT HIGHLIGHT - stor siffra + label (grupp) */
.article-page .stat-highlights {
  max-width: 720px;
  margin: 32px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
}
.article-page .stat-highlight {
  padding: 24px 20px;
  border-right: 1px solid var(--border);
}
.article-page .stat-highlight:last-child { border-right: none; }
.article-page .stat-highlight .stat-value {
  font-family: var(--mono);
  font-size: 28px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
  display: block;
}
.article-page .stat-highlight .stat-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* NUMBERED STEP-LIST - visuellt framhävd */
.article-page .numbered-list {
  max-width: 720px;
  margin: 32px auto;
  padding: 0;
  list-style: none;
  counter-reset: step;
}
.article-page .numbered-list li {
  counter-increment: step;
  padding: 18px 0 18px 64px;
  position: relative;
  border-bottom: 1px solid var(--border);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
}
.article-page .numbered-list li:last-child { border-bottom: none; }
.article-page .numbered-list li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 14px;
  font-family: var(--mono);
  font-size: 24px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.article-page .numbered-list li strong {
  font-family: var(--sans);
  font-weight: 700;
  color: var(--text);
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

/* COMPARISON CARDS - sida-vid-sida jämförelse */
.article-page .comparison-cards {
  max-width: 1040px;
  margin: 36px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.article-page .comparison-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.article-page .comparison-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
}
.article-page .comparison-card h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 6px;
  text-transform: none;
  letter-spacing: -0.005em;
  max-width: none;
}
.article-page .comparison-card .card-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  display: block;
}
.article-page .comparison-card ul {
  margin: 0;
  padding-left: 20px;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: none;
}
.article-page .comparison-card ul li { margin-bottom: 6px; }

/* KICKER - sektion-etikett */
.article-page .section-kicker {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin: 56px auto 12px;
  max-width: 720px;
  display: block;
}
.article-page .section-kicker + h2 {
  margin-top: 8px;
}
.article-page .section-kicker + h2::before {
  display: none;
}

/* READ ALSO - relaterade artiklar */
.article-page .read-also {
  max-width: 1040px;
  margin: 72px auto 0;
  padding: 40px 0 0;
  border-top: 1px solid var(--border);
}
.article-page .read-also > .section-kicker {
  margin: 0 auto 8px;
  display: block;
}
.article-page .read-also h2 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--text);
  margin: 0 auto 28px;
  max-width: 1040px;
  padding-top: 0;
}
.article-page .read-also h2::before { display: none; }
.article-page .read-also-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.article-page .read-also-card {
  display: block;
  border: 1px solid var(--border);
  padding: 20px;
  background: var(--bg-elev);
  border-radius: 4px;
  transition: border-color 0.15s, transform 0.15s;
  color: var(--text);
}
.article-page .read-also-card:hover {
  border-color: var(--accent);
  color: var(--text);
}
.article-page .read-also-card .cat {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
  display: block;
}
.article-page .read-also-card h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 8px;
  color: var(--text);
  max-width: none;
}
.article-page .read-also-card:hover h3 { color: var(--accent); }
.article-page .read-also-card p {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
  max-width: none;
}

/* Mobile */
@media (max-width: 900px) {
  .article-page h1 { font-size: 36px; }
  .article-page .lead, .article-page .article-lead { font-size: 19px; }
  .article-page .article-hero > *,
  .article-page .article-header > * {
    max-width: 100%;
  }
  .article-page table {
    display: block;
    overflow-x: auto;
  }
  .article-page h2 { font-size: 28px; margin-top: 48px; }
  .article-page h3 { font-size: 20px; margin-top: 32px; }
  .article-page p, .article-page ul, .article-page ol { font-size: 17px; }
  .article-page .article-hero, .article-page .article-header { padding: 40px 0 32px; margin-bottom: 32px; }
  .article-page blockquote { font-size: 19px; }
  .article-page .fact-box, .article-page .info-callout { padding: 18px 20px; }
  .article-page .numbered-list li { padding-left: 48px; font-size: 16px; }
  .article-page .numbered-list li::before { font-size: 20px; }
}

/* -------- Responsive -------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 32px; }
  .editorial-grid, .faq-grid { grid-template-columns: 1fr; gap: 24px; }
  .amount-grid { grid-template-columns: repeat(2, 1fr); }
  .insight-grid { grid-template-columns: 1fr; }
  .news-wrap { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  .container { padding: 0 20px; }
  .mobile-nav[aria-hidden="true"] { display: none; }
  .ticker-items { gap: 16px; overflow: hidden; }
  .ticker-items .ticker-item:nth-child(n+3) { display: none; }
  .rate-table-wrap {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .masthead-grid { grid-template-columns: 1fr; gap: 32px; }
  .sparkline-wrap { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 24px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid var(--border); padding: 16px 0; }
  .stat:nth-child(2) { border-right: none; }
  .action-list, .articles-grid { grid-template-columns: 1fr; }
  .action-item, .article-card { border-right: none; }
  .article-card:nth-child(1) { grid-row: auto; }
  .article-card:nth-child(1) h3 { font-size: 26px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  h1.price-h1 { font-size: 38px; }
  .price-big { font-size: 52px; }
  .price-unit { font-size: 28px; }
  .nav-links { display: none; }
  .nav-hamburger { display: inline-flex; }
  .nav-logo,
  .nav-logo picture,
  .nav-logo img {
    width: 230px;
    height: 36px;
  }
  .ticker-meta { display: none; }
  .editorial-body { font-size: 17px; }
  h2.section-h { font-size: 26px; }
  .article-hero h1 { font-size: 34px; }
  .article-body { font-size: 17px; }
  .article-body h2 { font-size: 26px; }
}
@media (max-width: 600px) {
  .stats-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .currency-switch { display: none; }
  .rate-table {
    min-width: 0;
    table-layout: fixed;
  }
  .rate-table th,
  .rate-table td {
    padding: 10px 8px;
    font-size: 12px;
  }
  .rate-table th:nth-child(4),
  .rate-table td:nth-child(4) {
    display: none;
  }
  .article-page .article-hero > *,
  .article-page .article-header > *,
  .article-page .hero-image,
  .article-page .article-section,
  .article-page p,
  .article-page ul,
  .article-page ol,
  .article-page table {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

/* ========== Mockup-aligned utility classes ========== */

/* Typography utilities */
.mono { font-family: var(--mono); }
.muted { color: var(--ink-2); }
.dim { color: var(--ink-3); }
.pos { color: var(--good); }
.neg { color: var(--bad); }

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
}

/* Heading scale (mockup) */
.h-hero { font-size: 44px; line-height: 1.1; font-weight: 700; letter-spacing: -0.02em; margin: 0; }
.h-hero .h-hero-secondary { color: var(--ink-2); font-weight: 500; }

/* Panel surfaces */
.panel {
  background: transparent;
  border: none;
  border-radius: 0;
}
.panel-strong {
  background: linear-gradient(180deg, #181a1f, #14161a);
  border: 1px solid var(--line);
  border-radius: 18px;
}

/* Pill (status/category tag) */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: #1a1d22;
  font-size: 12px;
  color: var(--ink-2);
}

/* Live indicator dot with glow */
.dot-live {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--good);
  box-shadow: 0 0 0 3px rgba(66, 201, 138, 0.18);
}

/* ========== Articles section (mockup-aligned) ========== */
.articles-section { padding: 56px 0; }
.articles-panel { padding: 0; }
.articles-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  gap: 16px;
}
.articles-title {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}
.articles-link {
  color: var(--ink-2);
  font-size: 12.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s;
}
.articles-link:hover { color: var(--accent); }
.articles-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.art-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: inherit;
  position: relative;
}
.art-card:hover h3 { color: var(--accent); }
.art-stripe {
  position: relative;
  aspect-ratio: 16 / 10;
  width: 100%;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: repeating-linear-gradient(
    45deg,
    oklch(0.22 0.04 var(--hue, 20)) 0 8px,
    oklch(0.18 0.04 var(--hue, 20)) 8px 16px
  );
  overflow: hidden;
}
.art-stripe-text {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.art-cat {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 7px;
  background: rgba(14, 15, 18, 0.85);
  border: 1px solid var(--line-2);
  border-radius: 5px;
  letter-spacing: 0.06em;
  color: var(--ink);
  z-index: 1;
}
.art-card h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13.5px;
  line-height: 1.35;
  color: var(--ink);
  margin: 0;
  transition: color 0.15s;
}
.art-card p {
  color: var(--ink-2);
  font-size: 11.5px;
  line-height: 1.5;
  margin: 0;
}
.art-meta {
  font-family: var(--sans);
  color: var(--ink-3);
  font-size: 11px;
  margin-top: auto;
}

/* ========== FAQ section (mockup-aligned) ========== */
.faq-section { padding: 56px 0 72px; }
.faq-panel { padding: 0; }
.faq-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.faq-title {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}
.faq-grid-mockup {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: start;
}
.faq-item-mockup {
  background: #13151a;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  transition: border-color 0.15s;
}
.faq-item-mockup[open] { border-color: var(--line-2); }
.faq-item-mockup summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}
.faq-item-mockup summary::-webkit-details-marker { display: none; }
.faq-item-mockup summary > span:first-child { flex: 1; }
.faq-icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.2s;
}
.faq-icon::before {
  width: 14px;
  height: 1.5px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.faq-icon::after {
  width: 1.5px;
  height: 14px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.faq-item-mockup[open] .faq-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-answer-mockup {
  padding: 0 16px 16px;
  color: var(--ink-2);
  font-size: 12.5px;
  line-height: 1.6;
}
.faq-answer-mockup a { color: var(--accent); }
.faq-answer-mockup a:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .articles-row { grid-template-columns: repeat(2, 1fr); }
  .faq-grid-mockup { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .articles-row { grid-template-columns: 1fr; }
  .amount-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
}

/* ========== Wallets section (mockup-aligned) ========== */
.wallets-section { padding: 56px 0; }
.wallets-panel { padding: 0; }
.wallets-title {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 8px 0;
  letter-spacing: -0.01em;
}
.wallets-intro {
  font-size: 15px;
  color: var(--ink-2);
  margin: 0 0 24px 0;
  max-width: 720px;
  line-height: 1.55;
}
.wallets-intro a { color: var(--accent); border-bottom: 1px solid rgba(255,122,26,0.3); }
.wallets-intro a:hover { border-bottom-color: var(--accent); }

.currency-section { padding: 24px 0 4px; }
.currency-switch-row { display: flex; align-items: center; gap: 14px; }
.currency-label { font-size: 13px; color: var(--ink-2); text-transform: uppercase; letter-spacing: 0.06em; }
.currency-switch { display: inline-flex; gap: 4px; padding: 4px; background: #16181d; border: 1px solid var(--line); border-radius: 999px; }
.currency-switch button { padding: 8px 16px; border: none; background: transparent; color: var(--ink-2); font-size: 13px; font-weight: 600; letter-spacing: 0.04em; border-radius: 999px; cursor: pointer; transition: background 0.15s, color 0.15s; }
.currency-switch button:hover { color: var(--ink); }
.currency-switch button.active { background: var(--accent); color: #0e0f12; }
.wallets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.wallet-card {
  background: #13151a;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wallet-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.wallet-glyph {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #0e0f12;
  border: 1px solid var(--line-2);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.wallet-glyph-orange {
  background: transparent;
  border: 0;
}
.wallet-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.3;
}
.wallet-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: 2px;
}
.wallet-desc {
  color: var(--ink-2);
  font-size: 12.5px;
  line-height: 1.55;
  flex: 1;
  margin: 0;
}
.wallet-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.wallet-tags span {
  font-size: 10.5px;
  padding: 4px 8px;
  background: #1d2027;
  border: 1px solid var(--line-2);
  border-radius: 6px;
  color: var(--ink-2);
  font-weight: 500;
}
.wallet-btn {
  align-self: flex-start;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 700;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  color: #0e0f12;
  transition: opacity 0.15s, transform 0.15s;
}
.wallet-btn:hover { opacity: 0.9; transform: translateY(-1px); color: #0e0f12; }
.wallet-btn-orange { background: #f7931a; }
.wallet-btn-green { background: #42c98a; }
.wallet-btn-blue { background: #9ec1ff; }

@media (max-width: 900px) {
  .wallets-grid { grid-template-columns: 1fr; }
}

/* ========== Footer with social icons ========== */
.site-footer .footer-grid {
  grid-template-columns: minmax(320px, 1.6fr) repeat(4, minmax(150px, 1fr)) minmax(250px, 1.25fr);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-email {
  color: var(--ink-2);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: color 0.15s;
}
.footer-email:hover { color: var(--accent); }
.footer-socials {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}
.social-icon {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line-2);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--ink-2);
  transition: color 0.15s, border-color 0.15s;
}
.social-icon:hover {
  color: var(--accent);
  border-color: var(--accent);
}

@media (max-width: 1100px) {
  .site-footer .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid h3,
  .footer-grid h4 {
    white-space: normal;
  }
}

@media (min-width: 1101px) and (max-width: 1320px) {
  .site-footer .footer-grid {
    grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(140px, 1fr));
  }

  .site-footer .footer-contact {
    grid-column: 1 / -1;
  }
}

/* ========== Articles real images (override stripe defaults) ========== */
.art-image {
  position: relative;
  aspect-ratio: 16 / 10;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.art-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ========== Hero / Masthead (mockup-aligned) ========== */
.masthead { padding: 42px 0 42px; border-bottom: none; }
.masthead-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 36px;
  align-items: stretch;
}
.hero-eyebrow { margin-bottom: 14px; }
h1.price-h1 {
  font-family: var(--sans);
  font-size: 44px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 18px;
}
h1.price-h1 .h1-secondary {
  color: var(--ink-2);
  font-weight: 500;
}
.subhead {
  color: var(--ink-2);
  max-width: 520px;
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 28px;
}
.price-panel {
  display: block;
  margin-bottom: 6px;
  white-space: nowrap;
}
.price-unit {
  color: var(--ink-2);
  font-size: 18px;
  font-weight: 600;
  margin-left: 10px;
}
.price-big {
  display: inline;
  font-family: var(--mono);
  font-size: 54px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}
.price-delta {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
}
.price-delta .pos { color: var(--good); }
.price-delta .neg { color: var(--bad); }
.updated-meta {
  margin-top: 22px;
  font-size: 12.5px;
  color: var(--ink-3);
  font-family: var(--sans);
}
.price-currency-control {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}
.price-currency-control > span {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.price-currency-toggle .tf-btn {
  min-width: 54px;
  font-size: 12px;
}
.price-currency-toggle .tf-btn.active {
  background: var(--accent);
  color: #0e0f12;
}

.hero-chart-panel {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.hero-chart-pair {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}
.hero-chart-period {
  font-size: 12px;
  margin-top: 2px;
}
.tf-toggle {
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line-2);
  border-radius: 9px;
  background: #13151a;
}
.tf-btn {
  padding: 5px 10px;
  font-size: 11.5px;
  font-weight: 600;
  border-radius: 6px;
  color: var(--ink-3);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--sans);
}
.tf-btn.active { color: var(--ink); background: #22252c; }
.tf-btn:disabled {
  color: rgba(126, 129, 139, 0.42);
  cursor: not-allowed;
}
.hero-range-toggle {
  flex: 0 0 auto;
}
.hero-chart {
  position: relative;
  height: 210px;
}
.hero-chart-plot {
  position: absolute;
  inset: 0 82px 28px 0;
}
.hero-chart svg {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-grid-line {
  stroke: rgba(126, 129, 139, 0.18);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}
.hero-y-axis {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 28px;
  width: 72px;
  pointer-events: none;
}
.hero-y-axis span {
  position: absolute;
  left: 8px;
  transform: translateY(-50%);
  font-family: var(--mono);
  font-size: 10.5px;
  line-height: 1;
  color: var(--ink-3);
  white-space: nowrap;
}
.hero-x-axis {
  position: absolute;
  left: 0;
  right: 82px;
  bottom: 0;
  height: 22px;
  pointer-events: none;
  border-top: 1px solid rgba(126, 129, 139, 0.16);
}
.hero-x-axis span {
  position: absolute;
  top: 7px;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 10.5px;
  line-height: 1;
  color: var(--ink-3);
  white-space: nowrap;
}
.hero-x-axis .axis-start { transform: translateX(0); }
.hero-x-axis .axis-end { transform: translateX(-100%); }
.hero-hover-zone {
  fill: transparent;
  cursor: crosshair;
  pointer-events: all;
}
.hero-crosshair {
  stroke: rgba(233, 234, 238, 0.42);
  stroke-width: 1;
  stroke-dasharray: 4 5;
  opacity: 0;
  pointer-events: none;
}
.hero-point {
  fill: #f7931a;
  stroke: #0e0f12;
  stroke-width: 2;
  opacity: 0;
  pointer-events: none;
}
.hero-crosshair.visible,
.hero-point.visible {
  opacity: 1;
}
.hero-tooltip {
  position: absolute;
  top: 6px;
  background: #0e0f12;
  border: 1px solid var(--line-2);
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 11px;
  color: var(--ink);
  white-space: nowrap;
  pointer-events: none;
  transform: translateX(-50%);
  display: none;
  z-index: 4;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}
.hero-tooltip.visible { display: block; }
.hero-tooltip .tt-date { font-size: 10px; color: var(--ink-2); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.04em; }
.hero-tooltip .tt-price { font-size: 13px; color: var(--ink); font-weight: 600; font-family: var(--mono); }
.hero-chart-summary {
  display: grid;
  grid-template-columns: minmax(150px, 1.35fr) repeat(3, minmax(92px, 1fr));
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.chart-summary-item {
  min-width: 0;
  background: rgba(14, 15, 18, 0.42);
  border: 1px solid rgba(44, 47, 55, 0.85);
  border-radius: 8px;
  padding: 10px 12px;
}
.chart-summary-item span {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.chart-summary-item strong {
  display: block;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.25;
  color: var(--ink);
  white-space: nowrap;
}
.chart-summary-item small {
  display: block;
  margin-top: 3px;
  font-size: 10.5px;
  line-height: 1.35;
  color: var(--ink-3);
}

@media (max-width: 900px) {
  .masthead-grid { grid-template-columns: 1fr; }
  h1.price-h1 { font-size: 36px; }
  .price-big { font-size: 44px; }
  .price-currency-control { align-items: flex-start; flex-direction: column; gap: 10px; }
  .hero-chart-head { align-items: flex-start; flex-direction: column; }
  .hero-range-toggle { width: 100%; overflow-x: auto; }
  .hero-range-toggle .tf-btn { flex: 1 0 auto; }
  .hero-chart-plot { inset: 0 0 34px 0; }
  .hero-y-axis { display: none; }
  .hero-x-axis { right: 0; height: 28px; }
  .hero-x-axis span { font-size: 9.5px; }
  .hero-chart-summary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .chart-summary-period { grid-column: 1 / -1; }
  .converter-results { grid-template-columns: 1fr; }
}

/* ========== TEXT SIZE OVERRIDES - match grunddesign body 16px ========== */

/* Wallets - bigger text */
.wallets-title { font-family: var(--serif) !important; font-size: 32px !important; font-weight: 400 !important; letter-spacing: -0.015em !important; line-height: 1.15 !important; margin-bottom: 24px !important; }
.wallet-name { font-size: 19px !important; }
.wallet-tag { font-size: 13px !important; margin-top: 4px !important; }
.wallet-desc { font-size: 16px !important; line-height: 1.6 !important; }
.wallet-tags span { font-size: 13px !important; padding: 6px 12px !important; }
.wallet-btn { font-size: 15px !important; padding: 12px 18px !important; }
.wallet-glyph { width: 44px !important; height: 44px !important; }
.wallets-panel { padding: 0 !important; }
.wallet-card { padding: 22px !important; gap: 16px !important; }

/* Articles - bigger text */
.articles-title { font-family: var(--serif) !important; font-size: 32px !important; font-weight: 400 !important; letter-spacing: -0.015em !important; line-height: 1.15 !important; }
.articles-link { font-size: 15px !important; }
.art-card h3 { font-size: 17px !important; line-height: 1.35 !important; }
.art-card p { font-size: 15px !important; line-height: 1.55 !important; }
.art-meta { font-size: 13px !important; }
.art-cat { font-size: 12px !important; padding: 4px 9px !important; }
.articles-panel { padding: 0 !important; }

/* FAQ - bigger text */
.faq-title { font-family: var(--serif) !important; font-size: 32px !important; font-weight: 400 !important; letter-spacing: -0.015em !important; line-height: 1.15 !important; }
.faq-item-mockup summary { font-size: 16px !important; padding: 18px 20px !important; }
.faq-answer-mockup { font-size: 15px !important; line-height: 1.6 !important; padding: 0 20px 18px !important; }
.faq-icon { width: 16px !important; height: 16px !important; }
.faq-icon::before { width: 16px !important; height: 2px !important; }
.faq-icon::after { width: 2px !important; height: 16px !important; }
.faq-panel { padding: 0 !important; }

/* Stats - bigger text */
.stat .v { font-size: 28px !important; }
.stat .v .u { font-size: 14px !important; }
.stat .k { font-size: 12px !important; }
.stat .sub { font-size: 13.5px !important; }
.stat { padding: 22px !important; }
.stat-icon { width: 36px !important; height: 36px !important; }
.stat-icon svg { width: 18px !important; height: 18px !important; }

/* ========== Market chart section (mockup-aligned) ========== */
.chart-section { padding: 56px 0; border-bottom: none !important; }
.chart-section .container > .divider-accent {
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent 30%);
  margin-bottom: 22px;
}
.chart-section .section-kicker { color: var(--accent) !important; font-size: 13px !important; letter-spacing: 0.18em !important; }
.chart-section h2.section-h { font-size: 32px; }
.chart-section .converter-intro { color: var(--ink-2); font-size: 16px; line-height: 1.6; max-width: 680px; margin-top: 12px; margin-bottom: 22px; }
.chart-section .timeframes {
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  background: #13151a;
}
.chart-section .timeframes button {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 7px;
  color: var(--ink-2);
  background: transparent;
  border: 0;
  cursor: pointer;
}
.chart-section .timeframes button.active { background: var(--accent); color: #0e0f12; }
.chart-section .chart-container {
  background: linear-gradient(180deg, #181a1f, #14161a);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 14px 6px;
  margin-top: 0;
}

/* Footer - bigger description text */
.footer-about p { font-size: 14px !important; line-height: 1.6 !important; }

/* ========== Divider accent (orange gradient line) ========== */
.divider-accent {
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent 30%);
  margin-bottom: 22px;
}

/* ========== Buy Paths section (mockup-aligned, colored cards) ========== */
.buypaths-section { padding: 56px 0; }
.buypaths-panel { padding: 0; }
.buypaths-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 16px;
}
.buypaths-title {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--ink);
  margin: 0;
}
.buypaths-link {
  color: var(--ink-2);
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s;
}
.buypaths-link:hover { color: var(--accent); }
.buypaths-intro {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.65;
  max-width: 720px;
  margin: 0 0 24px 0;
}
.buypaths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.buypath-card {
  background: #13151a;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.15s, transform 0.15s;
}
.buypath-card:hover {
  border-color: var(--line-2);
}
.bp-head {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.bp-num {
  font-family: var(--mono);
  color: var(--accent);
  font-weight: 600;
  font-size: 16px;
}
.bp-glyph {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.bp-glyph-blue { background: rgba(59, 130, 246, 0.25); color: #9ec1ff; }
.bp-glyph-green { background: rgba(34, 197, 94, 0.18); }
.bp-glyph-orange { background: rgba(255, 122, 26, 0.18); }
.bp-name {
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  line-height: 1.3;
}
.bp-desc {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.bp-desc a { color: var(--accent); border-bottom: 1px solid rgba(255,122,26,0.3); }
.bp-desc a:hover { border-bottom-color: var(--accent); }
.bp-cta {
  align-self: flex-start;
  padding: 10px 14px;
  background: #1d2027;
  border: 1px solid var(--line-2);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  display: inline-flex;
  gap: 6px;
  align-items: center;
  transition: background 0.15s, border-color 0.15s;
}
.bp-cta:hover {
  background: #22252c;
  border-color: var(--accent);
  color: var(--accent);
}

@media (max-width: 900px) {
  .buypaths-grid { grid-template-columns: 1fr; }
  .buypaths-head { flex-direction: column; align-items: flex-start; }
}

/* ========== UX width pass ========== */
@media (min-width: 1180px) {
  .container {
    max-width: 1760px;
    padding-left: 56px;
    padding-right: 56px;
  }

  .main-nav .container {
    padding-left: 56px;
    padding-right: 56px;
  }

  .ticker-strip .container {
    padding-left: 56px;
    padding-right: 56px;
  }

  .masthead {
    padding-top: 52px;
  }

  .masthead-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.35fr);
    gap: clamp(36px, 3vw, 64px);
    align-items: center;
  }

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

  .subhead {
    max-width: 680px;
  }

  .hero-chart-panel {
    padding: 28px;
  }

  .hero-chart {
    height: 280px;
  }

  .hero-chart-summary {
    grid-template-columns: minmax(220px, 1.25fr) repeat(3, minmax(150px, 1fr));
  }

  .metrics-section,
  .converter-section,
  .live-data-section,
  .insight-section,
  .actions-section,
  .editorial,
  .articles,
  .articles-section,
  .news,
  .wallets-section,
  .buypaths-section,
  .faq-section {
    padding-left: 0;
    padding-right: 0;
  }

  .stats-row {
    gap: 18px;
  }

  .stat {
    min-height: 186px;
  }

  .section-intro,
  .converter-intro,
  .actions-intro,
  .buypaths-intro {
    max-width: 900px;
  }

  .amount-grid {
    max-width: none;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .rate-table-wrap {
    max-width: none;
  }

  .converter {
    max-width: 1320px;
    grid-template-columns: minmax(360px, 1fr) auto minmax(360px, 1fr);
    gap: 22px;
  }

  .converter-results {
    max-width: 1320px;
    gap: 18px;
  }

  .insight-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .editorial-grid {
    grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
    gap: clamp(64px, 5vw, 112px);
  }

  .editorial-body {
    max-width: 980px;
  }

  .buypaths-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .wallets-intro {
    max-width: 900px;
  }

  .wallets-grid {
    gap: 20px;
  }

  .articles-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .faq-grid-mockup {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (min-width: 1600px) {
  .price-big {
    font-size: 62px;
  }

  h1.price-h1 {
    font-size: 52px;
  }

  .hero-chart {
    height: 310px;
  }
}
