:root {
  --deep-red: #D31D1F;
  --warm-orange: #FF6E00;
  --light-gold: #F5D081;
  --dark-brown: #1A1513;
  --surface: rgba(26, 21, 19, 0.82);
  --surface-solid: #1A1513D1;
  --surface-soft: #1A1513B8;
  --border: rgba(245, 208, 129, 0.18);
  --text-muted: #FFF1D6;
  --text-soft: #FFF1D6;
  --up: #22C55E;
  --gold-strong: #FBBF24;
  --max-w: 1440px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-soft);
  background: #1A1513;
}

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

.site {
  width: min(var(--max-w), calc(100% - 48px));
  margin: 0 auto;
  padding: 18px 0 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-shell {
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 111px;
  padding: 12px 16px;
  gap: 20px;
}

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

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: auto;
  max-width: 221px;
  height: 69px;
  object-fit: contain;
  flex-shrink: 0;
}

.menu-btn {
  display: none;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(245, 208, 129, 0.2);
  background: rgba(245, 208, 129, 0.12);
  color: var(--light-gold);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3px;
  padding: 0;
  cursor: pointer;
}

.menu-btn span {
  width: 13px;
  height: 1.5px;
  background: var(--gold-strong);
  display: block;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px 14px;
}

.top-nav a,
.mobile-panel a,
.footer-nav a {
  font-size: 15px;
  line-height: 18px;
  font-weight: 700;
  color: var(--light-gold);
}

.top-nav a:hover,
.top-nav a.active,
.mobile-panel a:hover,
.mobile-panel a.active,
.footer-nav a:hover {
  color: var(--warm-orange);
}

.mobile-panel {
  display: none;
  width: 100%;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.mobile-panel a {
  border: 1px solid rgba(245, 208, 129, 0.28);
  border-radius: 10px;
  padding: 8px 12px;
}

.price-header {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background-image: linear-gradient(
    120deg,
    oklch(75.2% 0.167 62.5 / 18%) 0%,
    oklch(21.4% 0.006 18.4 / 82%) 62%
  );
}

.price-main-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.price-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 91px;
  gap: 2px;
}

.price-label {
  margin: 0;
  font-size: 13px;
  color: var(--text-soft);
}

.price-left h1 {
  margin: 0;
  font-family: 'Roboto Slab', serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  color: var(--light-gold);
}

.price-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.price-right p {
  margin: 0;
  font-size: 13px;
  color: var(--text-soft);
}

.price-delta {
  font-size: clamp(24px, 4vw, 42px);
  line-height: 1.05;
  color: var(--up);
}

.price-delta.down { color: var(--deep-red); }

.price-delta-usd {
  font-size: 14px;
  color: var(--text-soft);
}

.timeline-shell {
  background: rgba(2, 6, 23, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.timeline-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.timeline-tabs button {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  line-height: 16px;
  color: var(--text-soft);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  padding: 5px 10px;
  cursor: pointer;
}

.timeline-tabs button.active,
.timeline-tabs button:hover {
  background: #FBBF24;
  border-color: #FBBF24;
  color: #111827;
}

.timeline-scale {
  font-size: 12px;
  color: var(--text-soft);
}

.chart-zone {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 0;
}

.chart-zone canvas {
  display: block;
  width: 100%;
  height: 146px;
  border-radius: 8px;
}

.timeline-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-soft);
  font-size: 11px;
  line-height: 14px;
  min-height: 14px;
}

.timeline-tag {
  align-self: flex-end;
  background: #EAB308;
  color: #111827;
  border-radius: 3px;
  padding: 3px 8px;
  font-size: 11px;
  line-height: 14px;
}

.kpi-grid-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kpi-featured-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 12px;
}

.kpi-card {
  background: var(--surface-solid);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.kpi-card.featured.marketcap {
  background-image: linear-gradient(
    120deg,
    oklch(75.2% 0.167 62.5 / 18%) 0%,
    oklch(21.4% 0.006 18.4 / 82%) 70%
  );
  border-color: rgba(247, 147, 26, 0.42);
}

.kpi-card.featured.fear {
  background-image: linear-gradient(145deg, rgba(26, 21, 19, 0.92), rgba(26, 21, 19, 0.88));
  border-color: rgba(250, 204, 21, 0.35);
}

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

.kpi-top h3 {
  margin: 0;
  font-family: 'Roboto Slab', serif;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FCD34D;
}

.chip {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 4px 10px;
  font-size: 11px;
  line-height: 14px;
}

.chip-up {
  background: rgba(34, 197, 94, 0.18);
  border-color: rgba(34, 197, 94, 0.35);
  color: #86EFAC;
}

.chip-warn {
  background: rgba(250, 204, 21, 0.2);
  border-color: rgba(250, 204, 21, 0.35);
  color: #FDE68A;
}

.kpi-big {
  margin: 0;
  font-size: clamp(28px, 3vw, 34px);
  line-height: 1;
  color: var(--light-gold);
}

.kpi-huge {
  margin: 0;
  font-size: clamp(34px, 4vw, 42px);
  line-height: 1;
  color: var(--light-gold);
}

.kpi-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  color: var(--text-soft);
}
.muted { color: var(--text-soft); }

.kpi-inline.baseline { align-items: flex-end; }
.kpi-inline.tiny { font-size: 11px; color: var(--text-soft); }

.progress,
.sentiment-track {
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  height: 8px;
  width: 100%;
}

.sentiment-track {
  position: relative;
  height: 10px;
  background: linear-gradient(90deg, #F97316, #EAB308 50%, #22C55E);
}

.progress i,
.sentiment-track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #FCD34D, #F59E0B);
  width: 0;
}

.sentiment-track i { background: transparent; }

.sentiment-track #fearMarker {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #FFF1D6;
  border: 1px solid rgba(26, 21, 19, 0.9);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 1px rgba(245, 208, 129, 0.45);
  pointer-events: none;
}

.kpi-card.featured.fear .kpi-inline.tiny span:first-child { color: #F97316; }
.kpi-card.featured.fear .kpi-inline.tiny span:last-child { color: #22C55E; }

.spark {
  width: 100%;
  height: 44px;
}

.spark polyline {
  fill: none;
  stroke: #F59E0B;
  stroke-width: 2.5;
  stroke-linecap: round;
}

.signal-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 10px;
  color: var(--text-soft);
  font-size: 11px;
}

.signal {
  color: var(--up);
}

.kpi-compact-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.kpi-card.mini {
  border-radius: 12px;
  gap: 4px;
  padding: 10px;
  min-height: 92px;
}

.kpi-card.mini h4 {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.kpi-card.mini p {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.2;
  color: var(--light-gold);
}

.kpi-card.mini small {
  font-size: 12px;
  line-height: 16px;
  color: var(--text-soft);
}

.kpi-card.mini small.up { color: var(--up); }

.news-section {
  background: var(--surface-soft);
  border-color: rgba(245, 208, 129, 0.2);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.news-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}

.news-head p {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-strong);
}

.news-head h2 {
  margin: 4px 0 0;
  font-family: 'Roboto Slab', serif;
  font-size: clamp(28px, 3vw, 30px);
  line-height: 1.1;
  color: var(--light-gold);
}

.news-head span {
  font-size: 13px;
  color: var(--text-soft);
}

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

.news-card {
  background: var(--surface-solid);
  border: 1px solid rgba(245, 208, 129, 0.18);
  border-radius: 14px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.news-image {
  width: 100%;
  height: 140px;
  border-radius: 10px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.news-meta {
  font-size: 11px;
  line-height: 14px;
  color: var(--gold-strong);
}

.news-title {
  margin: 0;
  font-size: 16px;
  line-height: 1.3;
  color: var(--light-gold);
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  border-radius: 14px;
  padding: 18px 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 46px;
  height: 42px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-brand strong {
  display: block;
  color: #FCA05A;
  font-family: 'Roboto Slab', serif;
  font-size: 20px;
  line-height: 24px;
}

.footer-brand small {
  display: block;
  color: #FCA05A;
  font-family: 'Roboto Slab', serif;
  font-size: 10px;
  line-height: 12px;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer > p {
  margin: 0;
  font-size: 12px;
  color: var(--light-gold);
}

/* Blog */
.site-blog { gap: 16px; }

.blog-hero {
  padding: 18px;
  background-image: linear-gradient(
    120deg,
    oklch(75.2% 0.167 62.5 / 18%) 0%,
    oklch(21.4% 0.006 18.4 / 82%) 62%
  );
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-hero .crumb {
  margin: 0;
  font-size: 12px;
  line-height: 16px;
}

.blog-hero h1 {
  margin: 0;
  font-family: 'Roboto Slab', serif;
  font-size: clamp(38px, 4.5vw, 54px);
  line-height: 1.05;
  color: var(--light-gold);
}

.meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  line-height: 16px;
}

.meta .reading { color: #22C55E; }

.hero-image {
  height: 460px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
}

.blog-content-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.blog-body {
  padding: 24px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.blog-body .block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.blog-body p {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
}

.blog-body > p:first-child {
  font-size: 21px;
  line-height: 1.5;
}

.blog-body .lead {
  font-size: 21px;
  line-height: 1.5;
}

.blog-body h2 {
  margin: 0;
  font-family: 'Roboto Slab', serif;
  font-size: clamp(30px, 3vw, 34px);
  line-height: 1.2;
  color: var(--light-gold);
}

.blog-body ul {
  margin: 0;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-body li {
  font-size: 18px;
  line-height: 1.7;
}

.blog-body blockquote {
  margin: 0;
  border: 1px solid rgba(245, 208, 129, 0.18);
  border-radius: 12px;
  padding: 14px;
  background: var(--surface-solid);
}

.blog-body blockquote p {
  font-size: 24px;
  line-height: 1.4;
}

.blog-body blockquote footer {
  margin-top: 6px;
  font-size: 13px;
}

.inline-image {
  height: 340px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
}

.blog-body small {
  font-size: 12px;
  line-height: 16px;
}

.blog-sidebar {
  width: 320px;
  padding: 16px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.side-card {
  border: 1px solid rgba(245, 208, 129, 0.18);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.side-card h3 {
  margin: 0;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--light-gold);
}

.author-name {
  margin: 0;
  font-size: 24px;
  line-height: 30px;
  color: var(--light-gold);
}

.tags,
.share {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag,
.share a {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 16px;
  background: rgba(245, 208, 129, 0.12);
  color: var(--light-gold);
}

.share a { border-radius: 8px; }

.tag.active {
  color: var(--warm-orange);
  background: rgba(255, 110, 0, 0.16);
}

.featured-posts {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.featured-posts .news-head h2 {
  margin: 0;
  font-family: 'Roboto Slab', serif;
  font-size: clamp(34px, 4vw, 50px);
  color: var(--light-gold);
}

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

/* News listing */
.site-news { gap: 16px; }

.news-page-hero {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-image: linear-gradient(
    120deg,
    oklch(75.2% 0.167 62.5 / 18%) 0%,
    oklch(21.4% 0.006 18.4 / 82%) 62%
  );
}

.news-page-eyebrow {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-strong);
}

.news-page-hero h1 {
  margin: 0;
  font-family: 'Roboto Slab', serif;
  font-size: clamp(38px, 4.5vw, 54px);
  line-height: 1.05;
  color: var(--light-gold);
}

.news-page-subtitle {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-soft);
  max-width: 70ch;
}

.news-page-hero-image {
  height: 340px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(245, 208, 129, 0.2);
}

.news-controls {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.news-search-row input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(245, 208, 129, 0.24);
  background: rgba(245, 208, 129, 0.06);
  color: var(--light-gold);
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 18px;
  padding: 10px 12px;
  outline: none;
}

.news-search-row input::placeholder { color: var(--text-soft); }

.news-search-row input:focus {
  border-color: rgba(255, 110, 0, 0.55);
  box-shadow: 0 0 0 2px rgba(255, 110, 0, 0.15);
}

.news-filter-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-chip {
  border: 1px solid rgba(245, 208, 129, 0.24);
  background: rgba(245, 208, 129, 0.08);
  color: var(--light-gold);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 16px;
  font-family: 'Roboto', sans-serif;
  cursor: pointer;
}

.filter-chip:hover,
.filter-chip.active {
  border-color: var(--warm-orange);
  color: var(--warm-orange);
}

.news-results-count {
  margin: 0;
  font-size: 12px;
  color: var(--text-soft);
}

.news-list {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.news-list-card {
  background: var(--surface-solid);
  border: 1px solid rgba(245, 208, 129, 0.18);
  border-radius: 14px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.news-list-image {
  width: 100%;
  height: 170px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
}

.news-list-excerpt {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-soft);
}

.news-list-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  color: var(--text-soft);
}

.news-list-foot a {
  color: var(--light-gold);
  font-weight: 700;
}

.news-list-foot a:hover { color: var(--warm-orange); }

.news-empty {
  border: 1px dashed rgba(245, 208, 129, 0.28);
  border-radius: 12px;
  padding: 14px;
  font-size: 14px;
  color: var(--text-soft);
}

.news-pagination {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.news-pagination button {
  border: 1px solid rgba(245, 208, 129, 0.24);
  background: rgba(245, 208, 129, 0.08);
  color: var(--light-gold);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 16px;
  font-family: 'Roboto', sans-serif;
  cursor: pointer;
}

.news-pagination button:hover:not(:disabled),
.news-pagination button.active {
  border-color: var(--warm-orange);
  color: var(--warm-orange);
}

.news-pagination button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* Contact */
.site-contact { gap: 16px; }

.contact-hero {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-image: linear-gradient(
    120deg,
    oklch(75.2% 0.167 62.5 / 18%) 0%,
    oklch(21.4% 0.006 18.4 / 82%) 62%
  );
}

.contact-eyebrow {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-strong);
}

.contact-hero h1 {
  margin: 0;
  font-family: 'Roboto Slab', serif;
  font-size: clamp(38px, 4.5vw, 54px);
  line-height: 1.05;
  color: var(--light-gold);
}

.contact-subtitle {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-soft);
  max-width: 70ch;
}

.contact-hero-image {
  height: 320px;
  border-radius: 12px;
  background-image: url("./img/about-hero.jpg");
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(245, 208, 129, 0.2);
}

.contact-grid {
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-card {
  background: var(--surface-solid);
  border: 1px solid rgba(245, 208, 129, 0.18);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-card.mission { grid-column: 1 / -1; }

.contact-card h2 {
  margin: 0;
  font-family: 'Roboto Slab', serif;
  font-size: clamp(28px, 3vw, 34px);
  line-height: 1.15;
  color: var(--light-gold);
}

.contact-card p {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-soft);
}

.contact-link {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--light-gold);
}

.contact-link:hover { color: var(--warm-orange); }

/* About */
.site-about { gap: 16px; }

.about-hero {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background-image: linear-gradient(
    120deg,
    oklch(75.2% 0.167 62.5 / 18%) 0%,
    oklch(21.4% 0.006 18.4 / 82%) 62%
  );
}

.about-eyebrow {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-strong);
}

.about-hero h1 {
  margin: 0;
  font-family: 'Roboto Slab', serif;
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1.03;
  color: var(--light-gold);
  max-width: 18ch;
}

.about-subtitle {
  margin: 0;
  max-width: 72ch;
  font-size: 19px;
  line-height: 1.5;
  color: var(--text-soft);
}

.about-hero-image {
  width: 100%;
  height: 320px;
  border-radius: 12px;
  background-image: url("./img/about-hero.jpg");
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(245, 208, 129, 0.2);
}

.about-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.about-trust span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(245, 208, 129, 0.28);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 16px;
  color: var(--light-gold);
  background: rgba(245, 208, 129, 0.08);
}

.about-content {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.about-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-block h2 {
  margin: 0;
  font-family: 'Roboto Slab', serif;
  font-size: clamp(32px, 3vw, 42px);
  line-height: 1.1;
  color: var(--light-gold);
}

.about-block p {
  margin: 0;
  font-size: 20px;
  line-height: 1.72;
  color: var(--text-soft);
  max-width: 78ch;
}

.about-block ul {
  margin: 0;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-block li {
  font-size: 20px;
  line-height: 1.65;
  color: var(--text-soft);
}

.about-quote {
  margin: 0;
  border: 1px solid rgba(245, 208, 129, 0.22);
  border-radius: 14px;
  padding: 18px;
  font-family: 'Roboto Slab', serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.2;
  color: var(--light-gold);
  background: var(--surface);
}

.about-principles,
.about-team,
.about-cta {
  border: 1px solid rgba(245, 208, 129, 0.18);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(26, 21, 19, 0.58);
}

.about-principles h2,
.about-team h2,
.about-cta h2 {
  margin: 0;
  font-family: 'Roboto Slab', serif;
  font-size: clamp(28px, 2.4vw, 34px);
  line-height: 1.15;
}

.about-principles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.about-principles-grid article {
  border: 1px solid rgba(245, 208, 129, 0.14);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-principles-grid h3 {
  margin: 0;
  font-size: 18px;
  line-height: 22px;
  color: var(--gold-strong);
}

.about-principles-grid p,
.about-team p,
.about-cta p {
  margin: 0;
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-soft);
}

.about-cta-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.cta-main,
.cta-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid rgba(245, 208, 129, 0.28);
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.cta-main {
  color: #1A1513;
  background: var(--light-gold);
  border-color: var(--light-gold);
}

.cta-main:hover {
  color: #1A1513;
  background: var(--warm-orange);
  border-color: var(--warm-orange);
}

.cta-ghost {
  color: var(--light-gold);
  background: transparent;
}

.cta-ghost:hover {
  color: var(--warm-orange);
  border-color: var(--warm-orange);
}

/* Tablet */
@media (max-width: 1023px) {
  .site {
    width: min(768px, calc(100% - 32px));
    gap: 14px;
  }

  .top-bar {
    min-height: 96px;
    align-items: center;
    gap: 12px;
  }

  .brand img { width: 221px; height: 69px; }

  .price-header,
  .kpi-card.featured.marketcap {
    background-image: linear-gradient(
      120deg,
      oklch(75.2% 0.167 62.5 / 18%) 0%,
      oklch(21.4% 0.006 18.4 / 82%) 62%
    );
  }

  .kpi-featured-row {
    grid-template-columns: 1fr;
  }

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

  .news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .news-list-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .blog-hero h1,
  .news-page-hero h1,
  .contact-hero h1,
  .about-hero h1 {
    font-size: 48px;
    line-height: 52px;
  }
  .blog-body p,
  .blog-body li { font-size: 16px; line-height: 24px; }
  .blog-body .lead { font-size: 16px; line-height: 24px; }
  .blog-body h2 { font-size: 30px; line-height: 36px; }
  .news-page-hero-image { height: 260px; }
  .contact-hero-image { height: 250px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card.mission { grid-column: auto; }
  .blog-content-row { grid-template-columns: 1fr; gap: 16px; }
  .blog-sidebar { width: 100%; }
  .featured-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-hero { padding: 22px; }
  .about-content { padding: 20px; }
  .about-hero-image { height: 260px; }
  .about-block p,
  .about-block li { font-size: 19px; }
  .about-principles-grid { grid-template-columns: 1fr; }
  .about-principles-grid p,
  .about-team p,
  .about-cta p { font-size: 17px; }

  .footer {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 12px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .site {
    width: min(390px, calc(100% - 24px));
    padding-top: 10px;
  }

  .top-bar {
    min-height: 86px;
    padding: 10px;
    gap: 8px;
    flex-direction: column;
    align-items: stretch;
  }

  .top-row { width: 100%; }

  .desktop-nav { display: none; }
  .menu-btn { display: inline-flex; }
  .mobile-panel.show { display: flex; }

  .brand img {
    width: auto;
    max-width: 151px;
    height: 50px;
  }

  .price-header {
    padding: 10px;
    gap: 10px;
  }

  .price-header,
  .kpi-card.featured.marketcap {
    background-image: linear-gradient(
      120deg,
      oklch(75.2% 0.167 62.5 / 18%) 0%,
      oklch(21.4% 0.006 18.4 / 82%) 62%
    );
  }

  .price-main-row { align-items: center; }

  .price-left h1 {
    font-size: 44px;
    line-height: 1.06;
  }

  .price-right p {
    font-size: 12px;
  }

  .price-delta {
    font-size: 30px;
  }

  .price-delta-usd {
    font-size: 12px;
  }

  .timeline-tabs button { display: none; }
  .timeline-tabs button[data-range='1d'] { display: inline-flex; }
  .timeline-scale { display: none; }

  .chart-zone canvas { height: 74px; }
  .timeline-foot, .timeline-tag { display: none; }

  .kpi-card.featured .kpi-huge { font-size: 36px; }
  .kpi-compact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .news-grid,
  .featured-grid,
  .news-list-grid { grid-template-columns: 1fr; }

  .news-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .news-page-hero {
    padding: 14px;
    gap: 8px;
  }

  .news-page-hero h1 {
    font-size: 34px;
    line-height: 38px;
  }

  .news-page-subtitle {
    font-size: 16px;
    line-height: 1.5;
  }

  .news-page-hero-image { height: 220px; }

  .news-controls,
  .news-list { padding: 10px; }

  .contact-hero {
    padding: 14px;
    gap: 8px;
  }

  .contact-hero h1 {
    font-size: 34px;
    line-height: 38px;
  }

  .contact-subtitle {
    font-size: 16px;
    line-height: 1.5;
  }

  .contact-hero-image { height: 210px; }
  .contact-grid { padding: 10px; }
  .contact-card { padding: 12px; }
  .contact-card h2 { font-size: clamp(30px, 10vw, 42px); }
  .contact-card p { font-size: 16px; }
  .contact-link { font-size: 18px; }

  .hero-image { height: 260px; }

  .blog-hero {
    padding: 16px;
    gap: 10px;
  }

  .blog-hero h1 {
    font-size: 34px;
    line-height: 38px;
  }

  .meta {
    gap: 10px;
    font-size: 12px;
  }

  .blog-body {
    padding: 14px;
    gap: 18px;
  }

  .blog-body .lead { font-size: 14px; line-height: 20px; }
  .blog-body p { font-size: 14px; line-height: 20px; }
  .blog-body h2 { font-size: 24px; line-height: 30px; }
  .blog-body blockquote p { font-size: 24px; line-height: 30px; }
  .inline-image { height: 220px; }

  .blog-sidebar,
  .featured-posts,
  .footer { padding: 14px; }

  .about-hero {
    padding: 16px;
    gap: 10px;
  }

  .about-hero h1 {
    font-size: 34px;
    line-height: 38px;
  }

  .about-subtitle {
    font-size: 17px;
    line-height: 1.55;
  }

  .about-hero-image {
    height: 200px;
  }

  .about-trust span {
    font-size: 11px;
    line-height: 14px;
    padding: 5px 9px;
  }

  .about-content {
    padding: 14px;
    gap: 20px;
  }

  .about-block { gap: 10px; }

  .about-block h2 {
    font-size: clamp(36px, 10vw, 48px);
    line-height: 1.05;
  }

  .about-block p,
  .about-block li {
    font-size: 18px;
    line-height: 1.65;
  }

  .about-principles,
  .about-team,
  .about-cta {
    padding: 12px;
    gap: 10px;
  }

  .about-principles-grid article {
    padding: 10px;
  }

  .about-principles-grid h3 {
    font-size: 16px;
    line-height: 20px;
  }

  .about-principles-grid p,
  .about-team p,
  .about-cta p {
    font-size: 16px;
    line-height: 1.6;
  }

  .about-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-main,
  .cta-ghost {
    width: 100%;
  }

  .about-quote {
    padding: 14px;
    font-size: clamp(28px, 9vw, 42px);
  }

  .footer-brand strong { font-size: 18px; }
  .footer-brand small { font-size: 10px; }
}
