@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@500;600;700;900&display=swap');

:root {
  --paper: #ece6d8;
  --ink: #000000;
  --red: #d62828;
  --yellow-hl: #fff176;
  --mute: #444038;
  --rule: #000000;
}

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

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
}

body {
  font-family: "Inter Tight", "Neue Haas Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; }

/* ========== 1. Hero ========== */
.hero {
  border-top: 8px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  padding: 40px 40px 48px;
  position: relative;
}
.hero .kicker {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--paper);
  display: inline-block;
  padding: 4px 10px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: 148px;
  line-height: 0.82;
  font-weight: 900;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  margin: 0;
}
.hero h1 .red { color: var(--red); }
.hero .standfirst {
  font-size: 20px;
  font-weight: 500;
  max-width: 72ch;
  margin-top: 28px;
  line-height: 1.35;
}
.hero .standfirst strong {
  background: var(--yellow-hl);
  padding: 0 4px;
}
.hero .standfirst strong.ink {
  background: var(--ink);
  color: var(--paper);
}

/* ========== 3. Live Ticker ========== */
.ticker {
  background: var(--ink);
  color: var(--paper);
  padding: 36px 40px 44px;
  border-bottom: 3px solid var(--ink);
}
.ticker .row1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.ticker .tag {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.2;
}
.ticker .tag.live {
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.16em;
  line-height: 1.2;
}
.ticker .tag.live::before {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--red);
  animation: v4blink 1s steps(2) infinite;
}
@keyframes v4blink { 50% { opacity: 0; } }

.ticker .value {
  font-size: clamp(28px, 9.5vw, 176px);
  line-height: 0.9;
  letter-spacing: -0.06em;
  font-weight: 900;
  color: var(--paper);
  font-variant-numeric: tabular-nums;
  text-align: center;
  padding: 8px 0;
  overflow: hidden;
}
.ticker .value .flicker-digit.changed { animation: v4flick 0.3s ease; }
@keyframes v4flick {
  0% { color: var(--red); }
  100% { color: var(--paper); }
}

.ticker .sub {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 2px solid var(--paper);
}
.ticker .sm {
  padding: 18px 20px 0;
  border-right: 2px solid var(--paper);
}
.ticker .sm:last-child { border-right: none; }
.ticker .sm .k {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.1;
  min-height: 2.4em;
}
.ticker .sm .v {
  font-size: 53px;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-top: 4px;
  font-variant-numeric: tabular-nums;
}

/* ========== 4. "This Affects You" strip ========== */
.strip {
  border-bottom: 3px solid var(--ink);
  padding: 40px 40px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}
.strip .head {
  font-size: 64px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-transform: uppercase;
}
.strip .head .red { color: var(--red); }
.strip .body { font-size: 18px; line-height: 1.4; }
.strip .body p { margin: 0 0 14px; }
.strip .body p strong {
  background: var(--ink);
  color: var(--paper);
  padding: 0 4px;
}
.strip .body p em {
  background: var(--yellow-hl);
  padding: 0 4px;
  font-style: normal;
  font-weight: 700;
}
.strip .body a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.strip .body a:hover,
.strip .body a:focus-visible {
  color: var(--red);
}

/* ========== 5+6. Chart + Event Log side-by-side wrapper ========== */
.chart-interest {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 3px solid var(--ink);
}
.chart-interest .chart,
.chart-interest .timeline {
  border-bottom: none;
}
.chart-interest .chart {
  border-right: 3px solid var(--ink);
}
.chart-interest .timeline { padding: 32px 28px; }
.chart-interest .timeline h2 { font-size: 64px; }
.chart-interest .timeline td.y { width: 72px; font-size: 16px; }
.chart-interest .timeline td.e { width: 120px; font-size: 11px; }
.chart-interest .timeline td.d { width: 110px; font-size: 18px; }
.chart-interest .timeline td.note { font-size: 12px; line-height: 1.4; }
.chart-interest .timeline tbody td { padding: 10px 12px; }
.chart-interest .timeline thead th { padding: 8px 12px; font-size: 11px; }
.chart-interest .timeline .cap { font-size: 12px; margin-bottom: 18px; }

/* ========== 5. Chart ========== */
.chart {
  padding: 40px;
  border-bottom: 3px solid var(--ink);
}
.chart h2 {
  font-size: 80px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.88;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.chart h2 .red { color: var(--red); }
.chart .cap {
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 700;
}
svg.chart4 {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}
svg.chart4 .area { fill: rgba(214, 40, 40, 0.15); }
svg.chart4 .line { stroke: var(--red); stroke-width: 3; fill: none; }
svg.chart4 .axis { stroke: var(--ink); stroke-width: 2; }
svg.chart4 .gridline { stroke: var(--ink); stroke-width: 0.5; stroke-dasharray: 4 4; }
svg.chart4 text {
  font-family: inherit;
  font-weight: 900;
  font-size: 20px;
  fill: var(--ink);
  text-transform: uppercase;
}
svg.chart4 .dot { fill: var(--ink); }

/* ========== 7. Compare ========== */
.compare {
  padding: 40px;
  border-bottom: 3px solid var(--ink);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: start;
}
.compare h2 {
  font-size: 100px;
  line-height: 0.85;
  font-weight: 900;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  margin: 0;
}
.compare h2 .red { color: var(--red); }
.compare .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.compare .cell {
  border-right: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  padding: 20px 16px;
  min-height: 130px;
}
.compare .cell:nth-child(3n) { border-right: none; }
.compare .cell:nth-last-child(-n+3) { border-bottom: none; }
.compare .cell .n {
  font-size: 56px;
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.compare .cell .n .red { color: var(--red); }
.compare .cell .l {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ========== 8. Bitcoin ========== */
.btc {
  padding: 40px;
  border-bottom: 3px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
}
.btc h2 {
  font-size: 80px;
  line-height: 0.88;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.btc h2 .red { color: var(--red); }
.btc .pitch {
  font-size: 18px;
  line-height: 1.4;
  max-width: 100ch;
  margin-bottom: 36px;
}
.btc .ex-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 3px solid var(--paper);
  max-width: 1500px;
}
.btc .ex {
  padding: 16px;
  border-right: 3px solid var(--paper);
}
.btc .ex:last-child { border-right: none; }
.btc .ex .n {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.btc .ex .logo {
  background: var(--ink);
  color: var(--paper);
  padding: 8px 14px;
  margin: 0 0 10px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  overflow: hidden;
}
.btc .ex a.logo img {
  transition: transform 0.2s ease;
}
.btc .ex a.logo:hover img,
.btc .ex a.logo:focus-visible img {
  transform: scale(1.06);
}
.btc .ex .logo img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.btc .ex .d {
  font-size: 13px;
  line-height: 1.35;
  margin-bottom: 10px;
}
.btc .ex a:not(.logo) {
  display: inline-block;
  background: var(--red);
  color: var(--paper);
  font-weight: 900;
  text-decoration: none;
  padding: 6px 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  transition: background 0.15s ease;
}
.btc .ex a:not(.logo):hover,
.btc .ex a:not(.logo):focus-visible {
  background: #b81f1f;
  outline: 2px solid var(--paper);
  outline-offset: 0;
}

/* ========== 9. Dig Deeper ========== */
.deep {
  padding: 40px;
  border-bottom: 3px solid var(--ink);
}
.deep h2 {
  font-size: 80px;
  line-height: 0.88;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0 0 28px;
}
.deep h2 .red { color: var(--red); }
.deep .item {
  border-top: 3px solid var(--ink);
}
.deep .item > summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 28px;
  align-items: center;
}
.deep .item > summary::-webkit-details-marker { display: none; }
.deep .item > summary::after {
  content: '+';
  font-size: 48px;
  font-weight: 900;
  line-height: 0.7;
  color: var(--ink);
  transition: color 0.15s ease;
}
.deep .item[open] > summary::after { content: '−'; }
.deep .item > summary:hover h4,
.deep .item > summary:hover::after,
.deep .item > summary:focus-visible h4,
.deep .item > summary:focus-visible::after {
  color: var(--red);
}
.deep .item .num {
  font-size: 72px;
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.04em;
  display: block;
}
.deep .item h4 {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
  margin: 0;
  transition: color 0.15s ease;
}
.deep .item .body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0 0 24px 128px;
}
.deep .item p {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}
.deep .item p strong {
  background: var(--ink);
  color: var(--paper);
  padding: 0 4px;
}
.deep .item p em {
  background: var(--yellow-hl);
  padding: 0 4px;
  font-style: normal;
  font-weight: 700;
}

/* ========== 10. Timeline (Event Log) ========== */
.timeline {
  padding: 40px;
  border-bottom: 3px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
}
.timeline h2 {
  font-size: 80px;
  line-height: 0.88;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.timeline h2 .red { color: var(--red); }
.timeline .cap {
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 700;
  color: var(--paper);
}
.timeline .table-scroll { overflow-x: auto; }
.timeline table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.timeline thead th {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 2px solid var(--paper);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper);
}
.timeline thead th.r { text-align: right; }
.timeline tbody td {
  padding: 12px 14px;
  border-bottom: 2px solid rgba(236, 230, 216, 0.2);
  vertical-align: baseline;
}
.timeline tbody tr:last-child td { border-bottom: none; }
.timeline td.y {
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.02em;
  width: 90px;
}
.timeline td.e {
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--red);
  width: 180px;
  font-size: 13px;
}
.timeline td.d {
  text-align: right;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  width: 140px;
}
.timeline td.note {
  font-size: 14px;
  line-height: 1.4;
  color: var(--paper);
  opacity: 0.8;
}

/* ========== 11. Further Reading ========== */
.res { padding: 40px; border-bottom: 3px solid var(--ink); }
.res h2 {
  font-size: 80px;
  line-height: 0.88;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0 0 28px;
}
.res h2 .red { color: var(--red); }
.res .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.res .col > summary {
  list-style: none;
  cursor: pointer;
  display: block;
}
.res .col > summary::-webkit-details-marker { display: none; }
.res .col h5 {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--paper);
  padding: 8px 10px;
  margin: 0 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.15s ease;
}
.res .col > summary h5::after {
  content: '+';
  font-size: 16px;
  font-weight: 900;
  margin-left: 12px;
}
.res .col[open] > summary h5::after { content: '−'; }
.res .col > summary:hover h5,
.res .col > summary:focus-visible h5 {
  background: var(--red);
}
.res .col .r {
  padding: 10px 0;
  border-bottom: 2px solid var(--ink);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.res .col .r:hover,
.res .col .r:focus-visible {
  background: var(--ink);
  color: var(--paper);
}
.res .col .r:hover .t,
.res .col .r:focus-visible .t {
  color: var(--paper);
}
.res .col .r .t {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  flex: 0 0 auto;
}

/* ========== 12. Footer ========== */
.foot {
  border-top: 8px solid var(--ink);
  padding: 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.foot-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.foot-meta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--mute);
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.18);
}
.foot a {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.foot a:hover,
.foot a:focus-visible {
  color: var(--red);
}
.foot-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.usa-link {
  display: inline-flex;
  transition: transform 0.2s ease;
  line-height: 0;
}
.usa-link:hover,
.usa-link:focus-visible {
  transform: scale(1.18);
  outline: none;
}
.usa-link img {
  width: 36px;
  height: 36px;
  display: block;
}
.share-btn {
  font-family: inherit;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--paper);
  border: 0;
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
}
.share-btn:hover,
.share-btn:focus-visible {
  background: #b81f1f;
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}
.share-btn:active { transform: translateY(1px); }

/* ========== Responsive: 640-1024px ========== */
@media (max-width: 1024px) {
  .chart-interest { grid-template-columns: 1fr; }
  .chart-interest .chart {
    border-right: none;
    border-bottom: 3px solid var(--ink);
  }
  .hero { padding: 24px 24px 32px; }
  .hero h1 { font-size: 88px; }
  .ticker { padding: 28px 24px 32px; }
  .ticker .sub { grid-template-columns: repeat(2, 1fr); }
  .ticker .sm:nth-child(2) { border-right: none; }
  .ticker .sm:nth-child(1),
  .ticker .sm:nth-child(2) { border-bottom: 2px solid var(--paper); padding-bottom: 14px; }
  .ticker .sm .v { font-size: 38px; }
  .strip { grid-template-columns: 1fr; gap: 24px; padding: 32px 24px; }
  .strip .head { font-size: 48px; }
  .chart { padding: 32px 24px; }
  .chart h2 { font-size: 56px; }
  .compare { grid-template-columns: 1fr; gap: 24px; padding: 32px 24px; }
  .compare h2 { font-size: 72px; }
  .compare .cell .n { font-size: 48px; }
  .btc { padding: 32px 24px; }
  .btc h2 { font-size: 56px; }
  .btc .ex-grid { grid-template-columns: 1fr; }
  .btc .ex { border-right: none; border-bottom: 3px solid var(--paper); }
  .btc .ex:last-child { border-bottom: none; }
  .deep { padding: 32px 24px; }
  .deep h2 { font-size: 56px; }
  .deep .item > summary {
    grid-template-columns: 72px 1fr auto;
    gap: 20px;
  }
  .deep .item > summary::after { font-size: 36px; }
  .deep .item .num { font-size: 52px; }
  .deep .item h4 { font-size: 24px; }
  .deep .item .body { padding: 0 0 20px 92px; }
  .res { padding: 32px 24px; }
  .res h2 { font-size: 56px; }
  .res .grid { grid-template-columns: 1fr; gap: 20px; }
  .timeline { padding: 24px 24px; }
  .timeline h2 { font-size: 44px; }
  .foot { padding: 20px 24px; }
  .foot-row { flex-wrap: wrap; }
}

/* ========== Responsive: <640px ========== */
@media (max-width: 640px) {
  .chart-interest { display: none; }

  .hero { padding: 22px 18px 28px; }
  .hero h1 { font-size: 48px; overflow-wrap: break-word; }
  .hero .standfirst { font-size: 17px; }

  .ticker { padding: 22px 8px 26px; }
  .ticker .row1 { flex-direction: column; align-items: flex-start; gap: 8px; padding: 0 4px; }
  .ticker .tag { font-size: 14px; letter-spacing: 0.1em; }
  .ticker .value { font-size: clamp(22px, 8.2vw, 176px); }
  .ticker .sub { grid-template-columns: 1fr 1fr; }
  .ticker .sm {
    padding: 14px 10px;
    border-right: 2px solid var(--paper);
    border-bottom: 2px solid var(--paper);
  }
  .ticker .sm:nth-child(2n) { border-right: none; }
  .ticker .sm:nth-last-child(-n+2) { border-bottom: none; }
  .ticker .sm .k {
    font-size: 12px;
    letter-spacing: 0.06em;
    min-height: 2.4em;
  }
  .ticker .sm .v { font-size: 28px; }

  .strip { padding: 24px 18px; }
  .strip .head { font-size: 36px; }
  .strip .body { font-size: 16px; }

  .chart { padding: 24px 18px; }
  .chart h2 { font-size: 40px; }

  .compare { padding: 24px 18px; }
  .compare h2 { font-size: 56px; }
  .compare .grid { grid-template-columns: repeat(3, 1fr); }
  .compare .cell {
    border-right: 3px solid var(--ink) !important;
    border-bottom: 3px solid var(--ink) !important;
    min-height: auto;
    padding: 14px 8px;
  }
  .compare .cell:nth-child(2n) { border-right: 3px solid var(--ink) !important; }
  .compare .cell:nth-child(3n) { border-right: none !important; }
  .compare .cell:nth-last-child(-n+2) { border-bottom: 3px solid var(--ink) !important; }
  .compare .cell:nth-last-child(-n+3) { border-bottom: none !important; }
  .compare .cell .n { font-size: 26px; margin-bottom: 4px; letter-spacing: -0.03em; }
  .compare .cell .l { font-size: 9px; letter-spacing: 0.02em; line-height: 1.2; }

  .btc { padding: 24px 18px; }
  .btc h2 { font-size: 40px; }
  .btc .pitch { font-size: 16px; margin-bottom: 20px; }
  .btc .ex { padding: 14px 14px 12px; }
  .btc .ex .n { display: none; }
  .btc .ex .logo { height: 48px; padding: 6px 12px; margin: 0 0 8px; }
  .btc .ex .d { font-size: 12px; margin-bottom: 8px; line-height: 1.3; }
  .btc .ex a:not(.logo) { padding: 5px 9px; font-size: 10px; }

  .deep { padding: 24px 18px; }
  .deep h2 { font-size: 40px; }
  .deep .item > summary {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "num     toggle"
      "title   toggle";
    gap: 2px 14px;
    padding: 18px 0;
    align-items: center;
  }
  .deep .item .num { grid-area: num; font-size: 32px; }
  .deep .item h4 { grid-area: title; font-size: 17px; letter-spacing: -0.01em; line-height: 1.15; }
  .deep .item > summary::after { grid-area: toggle; font-size: 32px; align-self: center; }
  .deep .item .body { padding: 0 0 16px 0; }

  .res { padding: 24px 18px; }
  .res h2 { font-size: 40px; }

  .foot { padding: 18px; gap: 10px; font-size: 11px; }
  .foot-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .foot-meta { flex-direction: column; align-items: flex-start; gap: 4px; font-size: 10px; padding-top: 10px; }
}

/* ========== Homepage CTA to FAQs page ========== */
.deep .deep-more {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 22px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 3px solid var(--ink);
  transition: background 0.15s ease, color 0.15s ease;
}
.deep .deep-more:hover,
.deep .deep-more:focus-visible {
  background: var(--red);
  border-color: var(--red);
  outline: none;
}

/* ========== FAQ page ========== */
.faq-hero {
  border-top: 8px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  padding: 40px 40px 44px;
}
.faq-hero .kicker {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--paper);
  display: inline-block;
  padding: 4px 10px;
  margin-bottom: 24px;
}
.faq-hero h1 {
  font-size: 88px;
  line-height: 0.88;
  font-weight: 900;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  margin: 0;
}
.faq-hero h1 .red { color: var(--red); }
.faq-hero .standfirst {
  font-size: 18px;
  font-weight: 500;
  max-width: 72ch;
  margin-top: 24px;
  line-height: 1.4;
}
.faq-hero .back-home {
  color: var(--red);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
  margin-left: 6px;
}
.faq-hero .back-home:hover,
.faq-hero .back-home:focus-visible {
  color: var(--ink);
  outline: none;
}

.faq-toc {
  padding: 20px 40px;
  border-bottom: 3px solid var(--ink);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  background: var(--paper);
}
.faq-toc a {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
  border: 2px solid var(--ink);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.faq-toc a:hover,
.faq-toc a:focus-visible {
  background: var(--ink);
  color: var(--paper);
  outline: none;
}

.faq-cat {
  padding: 40px 40px 24px;
  border-bottom: 3px solid var(--ink);
}
.faq-cat h2 {
  font-size: 64px;
  line-height: 0.88;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0 0 24px;
}
.faq-cat h2 .red { color: var(--red); }

.faq-item {
  border-top: 2px solid var(--ink);
  scroll-margin-top: 20px;
}
.faq-cat > .faq-item:first-of-type { border-top: 3px solid var(--ink); }
.faq-cat > .faq-item:last-of-type { border-bottom: 2px solid var(--ink); }

.faq-item > summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after {
  content: '+';
  font-size: 36px;
  font-weight: 900;
  line-height: 0.8;
  color: var(--ink);
  transition: transform 0.15s ease;
}
.faq-item[open] > summary::after {
  content: '−';
}
.faq-item > summary h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-transform: none;
}
.faq-item > summary:hover h3,
.faq-item > summary:focus-visible h3 {
  color: var(--red);
}
.faq-item .body {
  padding: 4px 0 24px;
  max-width: 72ch;
}
.faq-item .body p {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.55;
}
.faq-item .body p:last-child { margin-bottom: 0; }
.faq-item .body a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}
.faq-item .body a:hover,
.faq-item .body a:focus-visible {
  color: var(--red);
  outline: none;
}

/* FAQ page responsive */
@media (max-width: 1024px) {
  .faq-hero { padding: 24px 24px 32px; }
  .faq-hero h1 { font-size: 64px; }
  .faq-toc { padding: 16px 24px; }
  .faq-cat { padding: 32px 24px 20px; }
  .faq-cat h2 { font-size: 48px; }
}
@media (max-width: 640px) {
  .faq-hero { padding: 22px 18px 28px; }
  .faq-hero h1 { font-size: 44px; }
  .faq-hero .standfirst { font-size: 16px; }
  .faq-toc { padding: 14px 18px; gap: 8px; }
  .faq-toc a { font-size: 10px; padding: 5px 8px; }
  .faq-cat { padding: 24px 18px 16px; }
  .faq-cat h2 { font-size: 36px; margin-bottom: 18px; }
  .faq-item > summary { padding: 14px 0; gap: 12px; }
  .faq-item > summary h3 { font-size: 17px; }
  .faq-item > summary::after { font-size: 28px; }
  .faq-item .body p { font-size: 15px; }
  .deep .deep-more { font-size: 14px; padding: 12px 18px; }
}
