/* ============================================================
   ARCANE — Main Site Styles
   ============================================================ */

:root {
  /* Original navy palette (preserved for back-compat) */
  --navy: #1F4E78;
  --navy-dark: #163A59;
  --navy-light: #2C5F8A;

  /* Editorial palette (new) */
  --bone: #F5F1EA;
  --ink: #0A0A0A;
  --gold: #C9A961;
  --gold-dark: #A68A4A;
  --rust: #B8553D;

  /* Neutrals */
  --slate-900: #0F172A;
  --slate-800: #1E293B;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748B;
  --slate-400: #94A3B8;
  --slate-300: #CBD5E1;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;
  --slate-50: #F8FAFC;
  --white: #FFFFFF;

  /* Semantic */
  --green: #059669;
  --green-light: #34D399;
  --red: #DC2626;
  --red-light: #F87171;
}

/* ============================================================
   Base
   ============================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background: var(--bone);
}

h1,
h2,
h3,
h4,
.font-serif {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.mono {
  font-family: 'JetBrains Mono', monospace;
  font-feature-settings: "tnum";
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 32px;
  }
}

a {
  color: inherit;
}

/* ============================================================
   Announcement bar
   ============================================================ */

.announce {
  background: var(--ink);
  color: var(--bone);
  padding: 10px 24px;
  text-align: center;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.announce-inner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.announce .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.announce u {
  text-underline-offset: 3px;
}

/* ============================================================
   Header
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(245, 241, 234, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(10, 10, 10, 0.1);
}

.nav-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .nav-wrap {
    padding: 0 32px;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  width: 32px;
  height: 32px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-name {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
}

.nav-links {
  display: none;
  gap: 32px;
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--rust);
}

.nav-cta {
  display: none;
}

@media (min-width: 900px) {
  .nav-cta {
    display: inline-flex;
  }
}

.nav-toggle {
  display: flex;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--ink);
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--bone);
  border-bottom: 1px solid rgba(10, 10, 10, 0.1);
  padding: 16px 24px;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
}

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 0;
  /* editorial: sharp corners */
}

.btn-primary {
  background: var(--ink);
  color: var(--bone);
}

.btn-primary:hover {
  background: var(--rust);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 10px 4px;
}

.btn-secondary:hover {
  color: var(--rust);
  border-bottom-color: var(--rust);
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}

.btn-gold:hover {
  background: var(--bone);
}

.btn-large {
  padding: 16px 28px;
  font-size: 15px;
}

.btn-block {
  width: 100%;
  padding: 14px 20px;
}

.btn-arrow {
  transition: transform 0.2s;
}

.btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* ============================================================
   Ticker marquee
   ============================================================ */

.ticker {
  background: var(--ink);
  color: var(--bone);
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
  padding: 12px 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 60s linear infinite;
}

.ticker-group {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 16px;
  font-family: 'JetBrains Mono', monospace;
  font-feature-settings: "tnum";
  font-size: 13px;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ticker-label {
  color: var(--gold);
}

.ticker-sep {
  color: rgba(245, 241, 234, 0.3);
}

.ticker-up {
  color: var(--green-light);
}

.ticker-down {
  color: var(--red-light);
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 48px;
}

@media (min-width: 1024px) {
  .hero {
    padding: 96px 0 80px;
  }
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-eyebrow .line {
  flex: 1;
  height: 1px;
  background: rgba(10, 10, 10, 0.15);
}

.hero-eyebrow span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.6);
}

.hero-headline {
  font-size: clamp(48px, 8vw, 104px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: 40px;
  max-width: 1100px;
}

.hero-headline .italic {
  font-style: italic;
  font-weight: 400;
  color: rgba(10, 10, 10, 0.7);
}

.hero-headline .underline-gold {
  background-image: linear-gradient(transparent 85%, var(--gold) 85%, var(--gold) 95%, transparent 95%);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 0 2px;
}

.hero-grid {
  display: grid;
  gap: 48px;
  align-items: end;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
  }
}

.hero-lede {
  font-size: 19px;
  line-height: 1.5;
  color: rgba(10, 10, 10, 0.75);
  max-width: 620px;
  margin-bottom: 32px;
}

@media (min-width: 1024px) {
  .hero-lede {
    font-size: 21px;
  }
}

.hero-lede strong {
  color: var(--ink);
  font-weight: 500;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.hero-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(10, 10, 10, 0.5);
  margin-top: 20px;
  letter-spacing: 0.1em;
}

/* ============================================================
   Buy card (hero right column)
   ============================================================ */

.buy-card {
  background: var(--white);
  border: 1px solid rgba(10, 10, 10, 0.15);
  padding: 24px;
  box-shadow: 8px 8px 0 0 rgba(10, 10, 10, 0.08);
}

.bc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(10, 10, 10, 0.1);
}

.bc-identity {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bc-badge {
  width: 44px;
  height: 44px;
  background: linear-gradient(to bottom right, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 700;
}

.bc-title {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 4px;
}

.bc-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(10, 10, 10, 0.5);
  letter-spacing: 0.08em;
}

.bc-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  background: var(--ink);
  color: var(--bone);
  padding: 4px 8px;
}

.bc-live .dot {
  width: 4px;
  height: 4px;
  background: var(--green-light);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.bc-price-wrap {
  margin-bottom: 20px;
}

.bc-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.bc-change {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  margin-left: 8px;
}

.bc-change.up {
  color: var(--green);
}

.bc-change.down {
  color: var(--red);
}

.bc-price-label {
  font-size: 12px;
  color: rgba(10, 10, 10, 0.55);
  margin-top: 6px;
}

.spark {
  width: 100%;
  height: 56px;
  display: block;
}

.spark-labels {
  display: flex;
  justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: rgba(10, 10, 10, 0.4);
  margin-top: 4px;
  margin-bottom: 20px;
}

.bc-buy-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.bc-buy-label {
  font-size: 12px;
  color: rgba(10, 10, 10, 0.6);
  font-weight: 500;
}

.bc-buy-total {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 600;
}

.bc-slider {
  width: 100%;
  accent-color: var(--ink);
  margin-bottom: 4px;
}

.bc-slider-ticks {
  display: flex;
  justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: rgba(10, 10, 10, 0.4);
  margin-bottom: 16px;
}

.bc-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(10, 10, 10, 0.1);
  text-align: center;
}

.bc-stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: rgba(10, 10, 10, 0.5);
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}

.bc-stat-value {
  font-size: 12px;
  font-weight: 600;
}

/* Flash animations for live price updates */
@keyframes flash-up {
  0% {
    background: rgba(5, 150, 105, 0.15);
  }

  100% {
    background: transparent;
  }
}

@keyframes flash-down {
  0% {
    background: rgba(220, 38, 38, 0.15);
  }

  100% {
    background: transparent;
  }
}

.flash-up {
  animation: flash-up 1s ease-out;
}

.flash-down {
  animation: flash-down 1s ease-out;
}

/* ============================================================
   Trust strip
   ============================================================ */

.trust-strip {
  border-top: 1px solid rgba(10, 10, 10, 0.1);
  border-bottom: 1px solid rgba(10, 10, 10, 0.1);
  background: rgba(255, 255, 255, 0.4);
  padding: 40px 0;
}

.trust-label {
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.5);
  margin-bottom: 24px;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: 48px;
  row-gap: 16px;
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  color: rgba(10, 10, 10, 0.4);
}

.trust-sep {
  color: rgba(10, 10, 10, 0.2);
}

/* ============================================================
   Section utilities
   ============================================================ */

section {
  padding: 80px 0;
}

@media (min-width: 1024px) {
  section {
    padding: 128px 0;
  }
}

.section-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.section-lede {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(10, 10, 10, 0.7);
  margin-bottom: 24px;
}

/* ============================================================
   Problem section
   ============================================================ */

.problem-grid {
  display: grid;
  gap: 64px;
  align-items: start;
}

@media (min-width: 1024px) {
  .problem-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.friction-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.friction-card {
  background: var(--white);
  border: 1px solid rgba(10, 10, 10, 0.1);
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.friction-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--rust);
  padding-top: 4px;
}

.friction-body {
  flex: 1;
}

.friction-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 4px;
}

.friction-title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 17px;
}

.friction-metric {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--rust);
}

.friction-body p {
  font-size: 14px;
  color: rgba(10, 10, 10, 0.65);
  line-height: 1.4;
}

.arcane-answer {
  background: var(--ink);
  color: var(--bone);
  padding: 24px;
  margin-top: 16px;
  position: relative;
}

.arcane-answer-tag {
  position: absolute;
  top: 0;
  left: 24px;
  transform: translateY(-50%);
  background: var(--gold);
  color: var(--ink);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  padding: 4px 12px;
}

.arcane-answer-title {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  margin: 8px 0 12px;
}

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

.arcane-stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.arcane-stat-value {
  font-size: 15px;
  font-weight: 600;
}

/* ============================================================
   Catalog (dark section)
   ============================================================ */

.catalog {
  background: var(--ink);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}

.catalog .section-eyebrow {
  color: var(--gold);
}

.catalog .section-title {
  color: var(--bone);
}

.catalog-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.catalog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--gold);
  color: var(--gold);
  padding-bottom: 4px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}

.catalog-link:hover {
  color: var(--bone);
  border-bottom-color: var(--bone);
}

.catalog-grid {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid rgba(245, 241, 234, 0.15);
}

@media (min-width: 768px) {
  .catalog-grid {
    grid-template-columns: 1fr 2fr;
  }
}

/* Featured card (gold) */
.cc-featured {
  padding: 24px;
  background: linear-gradient(to bottom right, rgba(201, 169, 97, 0.1), transparent);
  border-bottom: 1px solid rgba(245, 241, 234, 0.15);
  position: relative;
}

@media (min-width: 768px) {
  .cc-featured {
    border-bottom: none;
    border-right: 1px solid rgba(245, 241, 234, 0.15);
  }
}

.cc-featured-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  background: var(--gold);
  color: var(--ink);
  padding: 2px 8px;
  letter-spacing: 0.1em;
}

.cc-featured-badge {
  width: 56px;
  height: 56px;
  background: linear-gradient(to bottom right, var(--gold), var(--gold-dark));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
}

.cc-featured-name {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 4px;
}

.cc-featured-sub {
  font-size: 13px;
  color: rgba(245, 241, 234, 0.5);
  margin-bottom: 20px;
}

.cc-featured-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
}

.cc-featured-price .change {
  font-size: 13px;
  margin-left: 8px;
  color: var(--green-light);
}

.cc-featured-desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(245, 241, 234, 0.7);
  margin-bottom: 24px;
}

/* Compact grid */
.cc-compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 1024px) {
  .cc-compact {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cc-card {
  padding: 20px;
  border-bottom: 1px solid rgba(245, 241, 234, 0.15);
  border-right: 1px solid rgba(245, 241, 234, 0.15);
  transition: background 0.2s;
  cursor: pointer;
}

.cc-card:hover {
  background: rgba(245, 241, 234, 0.05);
}

.cc-card.last-in-row {
  border-right: none;
}

.cc-card.last-row {
  border-bottom: none;
}

.cc-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.cc-card-badge {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Fraunces', serif;
  font-size: 13px;
  font-weight: 700;
}

.cc-card-badge.mono-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
}

.cc-badge-silver {
  background: linear-gradient(to bottom right, #CBD5E1, #64748B);
}

.cc-badge-oil {
  background: linear-gradient(to bottom right, #334155, #0F172A);
}

.cc-badge-copper {
  background: linear-gradient(to bottom right, #F97316, var(--rust));
}

.cc-badge-platinum {
  background: linear-gradient(to bottom right, #E2E8F0, #94A3B8);
  color: #1E293B;
}

.cc-badge-gas {
  background: linear-gradient(to bottom right, #60A5FA, #1D4ED8);
}

.cc-badge-wheat {
  background: linear-gradient(to bottom right, #FCD34D, #D97706);
  color: #78350F;
}

.cc-card-change {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
}

.cc-card-change.up {
  color: var(--green-light);
}

.cc-card-change.down {
  color: var(--red-light);
}

.cc-card-name {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 600;
}

.cc-card-unit {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(245, 241, 234, 0.5);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.cc-card-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 17px;
  font-weight: 600;
}

.catalog-foot {
  margin-top: 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(245, 241, 234, 0.5);
}

.catalog-foot a {
  color: var(--gold);
  text-decoration: none;
}

.catalog-foot a:hover {
  text-decoration: underline;
}

/* ============================================================
   How it works (4-column chain)
   ============================================================ */

.how-header {
  max-width: 720px;
  margin-bottom: 64px;
}

.how-chain {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid rgba(10, 10, 10, 0.15);
}

@media (min-width: 768px) {
  .how-chain {
    grid-template-columns: repeat(4, 1fr);
  }
}

.how-step {
  padding: 32px 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.15);
}

@media (min-width: 768px) {
  .how-step {
    padding: 32px 24px 32px 0;
    border-bottom: none;
    border-right: 1px solid rgba(10, 10, 10, 0.15);
  }

  .how-step:not(:first-child) {
    padding-left: 24px;
  }

  .how-step:last-child {
    border-right: none;
    padding-right: 0;
  }
}

.how-step-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}

.how-step-num {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.how-step-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(10, 10, 10, 0.5);
}

.how-step-title {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.how-step p {
  font-size: 14px;
  color: rgba(10, 10, 10, 0.65);
  line-height: 1.6;
}

/* ============================================================
   Pull quote
   ============================================================ */

.quote-section {
  background: var(--white);
  border-top: 1px solid rgba(10, 10, 10, 0.1);
  border-bottom: 1px solid rgba(10, 10, 10, 0.1);
}

.quote-wrap {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}

.quote-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.5);
  margin-bottom: 24px;
}

.quote-text {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.quote-text .italic {
  font-style: italic;
}

.quote-text .underline-gold {
  background-image: linear-gradient(transparent 85%, var(--gold) 85%, var(--gold) 95%, transparent 95%);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/* ============================================================
   Final CTA
   ============================================================ */

.cta-section {
  background: var(--ink);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}

.cta-section .section-eyebrow {
  color: var(--gold);
}

.cta-bg-numeral {
  position: absolute;
  right: -32px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Fraunces', serif;
  font-size: clamp(280px, 40vw, 520px);
  font-weight: 700;
  color: rgba(245, 241, 234, 0.05);
  line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
}

.cta-content {
  max-width: 640px;
  position: relative;
}

.cta-title {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  color: var(--bone);
}

.cta-lede {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(245, 241, 234, 0.75);
  margin-bottom: 32px;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

@media (min-width: 600px) {
  .cta-form {
    flex-direction: row;
  }
}

.cta-form input[type="email"] {
  flex: 1;
  padding: 16px 20px;
  background: rgba(245, 241, 234, 0.1);
  border: 1px solid rgba(245, 241, 234, 0.2);
  color: var(--bone);
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  transition: all 0.2s;
}

.cta-form input[type="email"]::placeholder {
  color: rgba(245, 241, 234, 0.4);
}

.cta-form input[type="email"]:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(245, 241, 234, 0.15);
}

.cta-perks {
  display: flex;
  flex-wrap: wrap;
  column-gap: 32px;
  row-gap: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: rgba(245, 241, 234, 0.6);
  letter-spacing: 0.08em;
}

.cta-perks span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-perks .check {
  color: var(--gold);
}

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
  background: var(--ink);
  color: rgba(245, 241, 234, 0.6);
  border-top: 1px solid rgba(245, 241, 234, 0.1);
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  gap: 40px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

.footer-brand .brand {
  margin-bottom: 16px;
}

.footer-brand .brand-mark {
  background: rgba(245, 241, 234, 0.1);
}

.footer-brand .brand-name {
  color: var(--bone);
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.6;
  max-width: 300px;
}

.footer-col h4 {
  color: var(--bone);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  color: rgba(245, 241, 234, 0.6);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(245, 241, 234, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.footer-bottom .disclaimer {
  color: rgba(245, 241, 234, 0.4);
}

/* ============================================================
   Utilities
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

/* Optional grain overlay — apply to any section via .has-grain */
.has-grain {
  position: relative;
}

.has-grain::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.3;
  pointer-events: none;
}

.has-grain>* {
  position: relative;
}

/* ============================================================
   PAGE: Sub-page hero (non-homepage)
   ============================================================ */

.page-hero {
  background: var(--bone);
  border-bottom: 1px solid rgba(10, 10, 10, 0.1);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .page-hero {
    padding: 96px 0 80px;
  }
}

.page-hero-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .page-hero-inner {
    padding: 0 32px;
  }
}

.page-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 20px;
  display: inline-block;
}

.page-title {
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 900px;
}

.page-title .italic {
  font-style: italic;
  font-weight: 400;
  color: rgba(10, 10, 10, 0.7);
}

.page-title .underline-gold {
  background-image: linear-gradient(transparent 85%, var(--gold) 85%, var(--gold) 95%, transparent 95%);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 0 2px;
}

.page-lede {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(10, 10, 10, 0.7);
  max-width: 640px;
}

@media (min-width: 1024px) {
  .page-lede {
    font-size: 20px;
  }
}

/* ============================================================
   COMMODITIES PAGE
   ============================================================ */

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 32px 0 24px;
  border-bottom: 1px solid rgba(10, 10, 10, 0.1);
  margin-bottom: 48px;
}

.filter-pill {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  background: transparent;
  border: 1px solid rgba(10, 10, 10, 0.2);
  color: var(--ink);
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
}

.filter-pill:hover {
  border-color: var(--ink);
  background: rgba(10, 10, 10, 0.04);
}

.filter-pill.active {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}

.commodity-table {
  width: 100%;
  border-top: 1px solid rgba(10, 10, 10, 0.15);
}

.commodity-row {
  display: grid;
  grid-template-columns: 64px 1fr 120px 100px 100px 120px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.1);
  gap: 16px;
  transition: background 0.2s;
}

.commodity-row:hover {
  background: rgba(10, 10, 10, 0.02);
}

.commodity-row.is-hidden {
  display: none;
}

@media (max-width: 767px) {
  .commodity-row {
    grid-template-columns: 48px 1fr auto;
    padding: 16px 0;
  }

  .commodity-row .col-unit,
  .commodity-row .col-change,
  .commodity-row .col-24h {
    display: none;
  }
}

.commodity-row .col-badge {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 15px;
  font-weight: 700;
  color: white;
}

.commodity-row .col-name .name {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 2px;
}

.commodity-row .col-name .desc {
  font-size: 13px;
  color: rgba(10, 10, 10, 0.6);
}

.commodity-row .col-unit {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(10, 10, 10, 0.6);
  text-transform: uppercase;
}

.commodity-row .col-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  font-weight: 600;
  text-align: right;
}

.commodity-row .col-change {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  text-align: right;
}

.commodity-row .col-change.up {
  color: var(--green);
}

.commodity-row .col-change.down {
  color: var(--red);
}

.commodity-row .col-action .btn {
  padding: 8px 14px;
  font-size: 12px;
}

.commodity-row .col-24h {
  text-align: right;
}

.cat-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid rgba(10, 10, 10, 0.15);
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .cat-summary {
    grid-template-columns: repeat(4, 1fr);
  }
}

.cat-summary-cell {
  padding: 24px;
  border-right: 1px solid rgba(10, 10, 10, 0.1);
  border-bottom: 1px solid rgba(10, 10, 10, 0.1);
}

@media (min-width: 768px) {
  .cat-summary-cell:nth-child(4n) {
    border-right: none;
  }

  .cat-summary-cell:nth-last-child(-n+4) {
    border-bottom: none;
  }
}

.cat-summary-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.55);
  margin-bottom: 8px;
}

.cat-summary-value {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ============================================================
   FORMS (early-access, contact, support)
   ============================================================ */

.form-page-wrap {
  display: grid;
  gap: 48px;
  padding: 64px 0 96px;
}

@media (min-width: 1024px) {
  .form-page-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 96px 0 128px;
  }
}

.form-side h2 {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.form-side p {
  color: rgba(10, 10, 10, 0.7);
  line-height: 1.7;
  margin-bottom: 16px;
}

.form-benefits {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.form-benefits li {
  display: flex;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.1);
}

.form-benefits li:last-child {
  border-bottom: none;
}

.form-benefits .num {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  min-width: 40px;
}

.form-benefits .label {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}

.form-benefits .sub {
  font-size: 14px;
  color: rgba(10, 10, 10, 0.6);
  line-height: 1.5;
}

.form-card {
  background: var(--white);
  border: 1px solid rgba(10, 10, 10, 0.15);
  padding: 32px;
  box-shadow: 8px 8px 0 0 rgba(10, 10, 10, 0.08);
}

@media (min-width: 768px) {
  .form-card {
    padding: 40px;
  }
}

.form-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-card .form-intro {
  font-size: 14px;
  color: rgba(10, 10, 10, 0.6);
  margin-bottom: 32px;
  line-height: 1.5;
}

.form-row {
  margin-bottom: 20px;
}

.form-row.cols-2 {
  display: grid;
  gap: 16px;
}

@media (min-width: 600px) {
  .form-row.cols-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form-row label,
.form-label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.65);
  margin-bottom: 8px;
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid rgba(10, 10, 10, 0.2);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
  border-radius: 0;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.2);
}

.form-row textarea {
  min-height: 140px;
  resize: vertical;
  font-family: inherit;
}

.form-row select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230A0A0A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  font-size: 13px;
  color: rgba(10, 10, 10, 0.7);
  line-height: 1.5;
}

.form-check input[type="checkbox"] {
  margin-top: 2px;
  accent-color: var(--ink);
  flex-shrink: 0;
}

.form-submit {
  margin-top: 16px;
}

.form-submit .btn {
  width: 100%;
  padding: 16px;
  font-size: 15px;
}

.form-success {
  background: rgba(5, 150, 105, 0.08);
  border-left: 3px solid var(--green);
  padding: 20px;
  margin-top: 24px;
  display: none;
}

.form-success.show {
  display: block;
}

.form-success strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 17px;
  margin-bottom: 4px;
  color: var(--ink);
}

.form-success p {
  font-size: 14px;
  color: rgba(10, 10, 10, 0.7);
  margin: 0;
}

.form-foot-meta {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(10, 10, 10, 0.1);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(10, 10, 10, 0.5);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-foot-meta .check {
  color: var(--gold);
}

/* ============================================================
   HOW-IT-WORKS extended (steps detail + FAQ)
   ============================================================ */

.hiw-step-detail {
  display: grid;
  gap: 32px;
  padding: 48px 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.1);
}

@media (min-width: 900px) {
  .hiw-step-detail {
    grid-template-columns: 200px 1fr;
    gap: 64px;
    padding: 64px 0;
  }
}

.hiw-step-detail:last-child {
  border-bottom: none;
}

.hiw-step-detail .num {
  font-family: 'Fraunces', serif;
  font-size: 96px;
  font-weight: 700;
  color: var(--gold);
  line-height: 0.9;
}

@media (min-width: 900px) {
  .hiw-step-detail .num {
    font-size: 128px;
  }
}

.hiw-step-detail h3 {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.hiw-step-detail>div>p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(10, 10, 10, 0.75);
  margin-bottom: 16px;
}

.hiw-fact-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 24px;
  border: 1px solid rgba(10, 10, 10, 0.12);
}

@media (min-width: 600px) {
  .hiw-fact-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hiw-fact {
  padding: 16px;
  border-right: 1px solid rgba(10, 10, 10, 0.08);
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}

.hiw-fact-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.5);
  margin-bottom: 4px;
}

.hiw-fact-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 15px;
  font-weight: 600;
}

/* FAQ */
.faq-list {
  border-top: 1px solid rgba(10, 10, 10, 0.15);
}

.faq-item {
  border-bottom: 1px solid rgba(10, 10, 10, 0.15);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
}

.faq-question:hover {
  color: var(--rust);
}

.faq-question .arrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  color: rgba(10, 10, 10, 0.5);
  transition: transform 0.3s;
}

.faq-item.open .faq-question .arrow {
  transform: rotate(45deg);
  color: var(--rust);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 600px;
}

.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(10, 10, 10, 0.7);
  max-width: 780px;
}

.faq-answer-inner p {
  margin-bottom: 12px;
}

/* ============================================================
   LEGAL PAGES (terms, privacy)
   ============================================================ */

.legal-layout {
  display: grid;
  gap: 48px;
  padding: 56px 0 96px;
}

@media (min-width: 1024px) {
  .legal-layout {
    grid-template-columns: 260px 1fr;
    gap: 80px;
    padding: 80px 0 128px;
  }
}

.legal-toc {
  position: sticky;
  top: 120px;
  align-self: start;
  display: none;
}

@media (min-width: 1024px) {
  .legal-toc {
    display: block;
  }
}

.legal-toc-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.5);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(10, 10, 10, 0.15);
}

.legal-toc nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.legal-toc a {
  display: block;
  font-size: 13px;
  color: rgba(10, 10, 10, 0.65);
  padding: 6px 0;
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.4;
}

.legal-toc a:hover {
  color: var(--rust);
}

.legal-toc a.active {
  color: var(--ink);
  font-weight: 600;
}

.legal-toc a.flag {
  color: var(--rust);
  font-weight: 600;
}

.legal-meta {
  display: grid;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(10, 10, 10, 0.04);
  border-left: 3px solid var(--ink);
  margin-bottom: 32px;
  font-size: 13px;
}

@media (min-width: 600px) {
  .legal-meta {
    grid-template-columns: repeat(3, 1fr);
    padding: 24px 32px;
  }
}

.legal-meta .m-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.55);
  margin-bottom: 4px;
}

.legal-meta .m-value {
  font-weight: 600;
}

.legal-callout {
  background: rgba(184, 85, 61, 0.06);
  border-left: 3px solid var(--rust);
  padding: 20px 24px;
  margin-bottom: 40px;
}

.legal-callout strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 4px;
}

.legal-callout p {
  font-size: 14px;
  color: rgba(10, 10, 10, 0.75);
  line-height: 1.6;
  margin: 0;
}

.legal-body {
  min-width: 0;
  max-width: 780px;
}

.legal-body h2 {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 700;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--ink);
  scroll-margin-top: 120px;
  letter-spacing: -0.01em;
}

.legal-body h2:first-of-type {
  margin-top: 24px;
}

.legal-body h3 {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--ink);
}

.legal-body p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(10, 10, 10, 0.8);
  margin-bottom: 16px;
}

.legal-body ul,
.legal-body ol {
  margin: 12px 0 20px 24px;
}

.legal-body li {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(10, 10, 10, 0.8);
  margin-bottom: 8px;
}

.legal-body strong {
  font-weight: 600;
  color: var(--ink);
}

.legal-body a {
  color: var(--rust);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.legal-body a:hover {
  color: var(--ink);
}

.legal-body .uppercase-block {
  background: rgba(10, 10, 10, 0.04);
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  border-left: 2px solid rgba(10, 10, 10, 0.3);
}

.legal-body hr {
  border: none;
  border-top: 1px solid rgba(10, 10, 10, 0.15);
  margin: 48px 0 24px;
}

.legal-body .sign-off {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(10, 10, 10, 0.5);
  text-transform: uppercase;
}

/* ============================================================
   Contact page cards
   ============================================================ */

.contact-cards {
  display: grid;
  gap: 16px;
  margin-bottom: 48px;
}

@media (min-width: 700px) {
  .contact-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(10, 10, 10, 0.12);
}

.contact-card .c-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 12px;
}

.contact-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 14px;
  color: rgba(10, 10, 10, 0.7);
  line-height: 1.6;
  margin-bottom: 12px;
}

.contact-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}

.contact-card a:hover {
  color: var(--rust);
  border-bottom-color: var(--rust);
}

/* ============================================================
   MONEY CASE section (M2 / commodity argument with FRED chart)
   ============================================================ */

.money-case {
  background: var(--bone);
  border-top: 1px solid rgba(10, 10, 10, 0.1);
  border-bottom: 1px solid rgba(10, 10, 10, 0.1);
}

.money-case-grid {
  display: grid;
  gap: 48px;
  align-items: start;
}

@media (min-width: 1024px) {
  .money-case-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 80px;
  }
}

.money-case-copy em {
  font-style: italic;
  color: var(--ink);
  font-weight: 500;
}

/* Stat grid under the copy */
.money-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 32px;
  border: 1px solid rgba(10, 10, 10, 0.15);
}

@media (min-width: 768px) {
  .money-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

.money-stat {
  padding: 20px 24px;
  border-right: 1px solid rgba(10, 10, 10, 0.1);
  border-bottom: 1px solid rgba(10, 10, 10, 0.1);
  background: var(--white);
}

.money-stat:nth-child(2n) {
  border-right: none;
}

.money-stat:nth-last-child(-n+2) {
  border-bottom: none;
}

.money-stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(10, 10, 10, 0.55);
  margin-bottom: 6px;
}

.money-stat-value {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* Chart frame */
.money-case-chart {
  position: sticky;
  top: 100px;
}

@media (max-width: 1023px) {
  .money-case-chart {
    position: static;
  }
}

.chart-frame {
  background: var(--white);
  border: 1px solid rgba(10, 10, 10, 0.15);
  box-shadow: 8px 8px 0 0 rgba(10, 10, 10, 0.08);
  padding: 20px;
}

.chart-caption {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(10, 10, 10, 0.1);
  flex-wrap: wrap;
}

.chart-caption-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--rust);
}

.chart-caption-value {
  font-size: 12px;
  color: rgba(10, 10, 10, 0.65);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.02em;
}

.chart-embed {
  width: 100%;
  overflow: hidden;
  background: var(--bone);
  border: 1px solid rgba(10, 10, 10, 0.08);
}

.chart-embed iframe {
  display: block;
  width: 100%;
  /* Preserve FRED's native aspect. Height is fixed by FRED at 525px; we let it render full-size. */
  height: 525px;
  border: 0;
}

/* On narrow screens, prevent horizontal overflow. FRED iframe has a fixed 670px min-width;
   we can't CSS-scale an iframe reliably across browsers, so we just allow a subtle horizontal
   scroll within the chart-embed only, rather than blowing out page layout. */
@media (max-width: 720px) {
  .chart-embed {
    overflow-x: auto;
  }

  .chart-embed iframe {
    min-width: 670px;
  }
}

.chart-footer {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(10, 10, 10, 0.65);
}

/* ============================================================
   CTA actions row + ghost-light button (for dark sections)
   ============================================================ */

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.btn-ghost-light {
  background: transparent;
  color: var(--bone);
  border-bottom: 1px solid var(--bone);
  padding: 16px 4px;
}

.btn-ghost-light:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}