/* ============================================================
   cbdcaccounts.com
   Aesthetic: Light editorial — private banking meets digital ledger
   Palette: Parchment / Deep Forest Green / Brass
   Fonts: Playfair Display · IBM Plex Mono · Crimson Pro
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,800;1,400;1,600&family=IBM+Plex+Mono:wght@300;400;500&family=Crimson+Pro:ital,wght@0,400;0,600;1,400&display=swap');

/* ── Variables ──────────────────────────────────────────── */
:root {
  --parch:        #f5f0e8;
  --parch-dark:   #ede6d6;
  --parch-mid:    #e8e0ce;
  --forest:       #1a3326;
  --forest-mid:   #234535;
  --forest-light: #2d5a42;
  --brass:        #a07840;
  --brass-light:  #c4964e;
  --brass-pale:   #e8d4a8;
  --ink:          #1c1a16;
  --ink-mid:      #3d3a32;
  --muted:        #7a7260;
  --rule:         rgba(26,51,38,0.12);
  --rule-brass:   rgba(160,120,64,0.25);
  --card-bg:      rgba(255,253,248,0.92);
  --white:        #fefdf9;

  --font-display: 'Playfair Display', serif;
  --font-mono:    'IBM Plex Mono', monospace;
  --font-body:    'Crimson Pro', serif;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--parch);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: var(--forest); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--brass); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Utility ────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.section { padding: 100px 0; }
.section-alt { background: var(--white); }
.section-forest { background: var(--forest); }

.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 20px;
}
.label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--brass);
}
.label-forest { color: var(--forest); }
.label-forest::before { background: var(--forest); }
.label-light { color: var(--brass-pale); }
.label-light::before { background: var(--brass-pale); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--forest);
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: var(--brass); }
.section-title .light { color: var(--parch); }
.section-title .pale { color: var(--brass-pale); }

.section-sub {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 580px;
  margin-bottom: 52px;
  line-height: 1.72;
}

.btn {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 30px;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  border-radius: 0;
}
.btn-forest { background: var(--forest); color: var(--brass-pale); }
.btn-forest:hover { background: var(--forest-light); color: var(--white); }
.btn-brass { background: var(--brass); color: var(--white); }
.btn-brass:hover { background: var(--brass-light); color: var(--white); }
.btn-outline-forest {
  background: transparent; color: var(--forest);
  border: 1px solid var(--forest);
}
.btn-outline-forest:hover { background: var(--forest); color: var(--brass-pale); }
.btn-outline-light {
  background: transparent; color: var(--brass-pale);
  border: 1px solid rgba(232,212,168,0.4);
}
.btn-outline-light:hover { background: rgba(232,212,168,0.1); color: var(--white); }

/* ── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0;
  background: rgba(245,240,232,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.22rem; font-weight: 800;
  color: var(--forest); letter-spacing: -0.01em;
}
.nav-logo span { color: var(--brass); }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mid);
}
.nav-links a:hover { color: var(--forest); }
.nav-cta {
  font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 9px 20px; background: var(--forest);
  color: var(--brass-pale) !important; transition: all 0.22s;
}
.nav-cta:hover { background: var(--forest-light); color: var(--white) !important; }
.nav-burger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-burger span { width: 24px; height: 2px; background: var(--forest); display: block; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 88px;
  background: var(--parch); overflow: hidden;
}
.hero-canvas-wrap {
  position: absolute; top: 0; right: 0;
  width: 52%; height: 100%; overflow: hidden;
}
#hero-canvas { width: 100%; height: 100%; opacity: 0.75; }
.hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--parch) 36%, rgba(245,240,232,0.7) 58%, transparent 75%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 600px; }
.hero-kicker {
  font-family: var(--font-mono); font-size: 0.65rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brass); margin-bottom: 22px;
  display: flex; align-items: center; gap: 14px;
}
.hero-kicker::before {
  content: ''; display: block;
  width: 44px; height: 1px; background: var(--brass); flex-shrink: 0;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 800; color: var(--forest);
  line-height: 0.97; letter-spacing: -0.02em; margin-bottom: 6px;
}
.hero-title .italic { font-style: italic; font-weight: 600; color: var(--brass); }
.hero-title .underlined {
  display: inline-block;
  border-bottom: 3px solid var(--brass); padding-bottom: 4px;
}
.hero-desc {
  font-family: var(--font-body); font-size: 1.12rem;
  color: var(--ink-mid); max-width: 490px;
  margin: 26px 0 38px; line-height: 1.77;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-note {
  font-family: var(--font-mono); font-size: 0.6rem;
  letter-spacing: 0.08em; color: var(--muted);
  margin-top: 18px; text-transform: uppercase;
}

.hero-footer {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  background: var(--forest); border-top: 2px solid var(--brass);
}
.hero-footer-inner { display: flex; }
.hf-cell {
  flex: 1; padding: 20px 28px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.hf-cell:last-child { border-right: none; }
.hf-val {
  font-family: var(--font-display); font-size: 1.85rem;
  font-weight: 800; color: var(--brass-pale); line-height: 1;
}
.hf-key {
  font-family: var(--font-mono); font-size: 0.58rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(232,212,168,0.45); margin-top: 4px;
}

/* ── TICKER ─────────────────────────────────────────────── */
.ticker {
  background: var(--parch-dark);
  border-bottom: 1px solid var(--rule);
  padding: 12px 0; overflow: hidden;
}
.ticker-track {
  display: flex; gap: 52px;
  animation: ticker-scroll 30s linear infinite;
  width: max-content; white-space: nowrap;
}
.ticker-item {
  font-family: var(--font-mono); font-size: 0.63rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
  display: flex; align-items: center; gap: 12px;
}
.ticker-item::before { content: '◇'; color: var(--brass); font-size: 0.5rem; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── USE CASES ──────────────────────────────────────────── */
.use-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--rule); margin-top: 60px;
}
.use-card {
  padding: 38px 30px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--white);
  transition: background 0.3s;
  position: relative; overflow: hidden;
}
.use-card:hover { background: var(--parch); }
.use-card:nth-child(3n) { border-right: none; }
.use-card:nth-last-child(-n+3) { border-bottom: none; }
.use-num {
  font-family: var(--font-mono); font-size: 0.58rem;
  letter-spacing: 0.14em; color: var(--brass); margin-bottom: 16px;
}
.use-card h3 {
  font-family: var(--font-display); font-size: 1.15rem;
  font-weight: 700; color: var(--forest);
  margin-bottom: 10px; line-height: 1.25;
}
.use-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }
.use-accent {
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--brass);
  transition: width 0.45s ease;
}
.use-card:hover .use-accent { width: 100%; }

/* ── DOMAIN FEATURE ─────────────────────────────────────── */
.feature { background: var(--forest); position: relative; overflow: hidden; }
.feature-watermark {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 16rem);
  font-weight: 800; font-style: italic;
  color: rgba(255,255,255,0.025);
  white-space: nowrap; pointer-events: none;
  letter-spacing: -0.04em;
}
.feature-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start;
}
.feature-left p {
  font-size: 1.02rem; color: rgba(232,212,168,0.65);
  line-height: 1.75; margin-bottom: 18px;
}
.attr-table {
  border: 1px solid rgba(232,212,168,0.15);
  margin: 32px 0;
}
.attr-row {
  display: flex; border-bottom: 1px solid rgba(232,212,168,0.1);
}
.attr-row:last-child { border-bottom: none; }
.attr-key {
  width: 172px; flex-shrink: 0;
  padding: 13px 18px;
  font-family: var(--font-mono); font-size: 0.6rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(232,212,168,0.45);
  border-right: 1px solid rgba(232,212,168,0.1);
  background: rgba(0,0,0,0.1);
}
.attr-val {
  padding: 13px 18px;
  font-family: var(--font-mono); font-size: 0.77rem;
  color: var(--brass-pale);
}

.domain-card {
  background: var(--parch); padding: 48px 40px; position: relative;
}
.domain-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--brass), var(--forest-light));
}
.domain-wordmark-text {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800; color: var(--forest); line-height: 1;
  letter-spacing: -0.02em;
}
.domain-wordmark-text span { color: var(--brass); }
.domain-tld {
  font-family: var(--font-mono); font-size: 0.62rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); margin: 6px 0 26px;
}
.check-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 30px; }
.check-item {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.88rem; color: var(--ink-mid);
}
.check-tick { color: var(--forest); font-family: var(--font-mono); font-size: 0.7rem; flex-shrink: 0; margin-top: 2px; }
.price-block {
  border-top: 1px solid var(--rule); padding-top: 22px;
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 14px; flex-wrap: wrap;
}
.price-label {
  font-family: var(--font-mono); font-size: 0.58rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 4px;
}
.price-val {
  font-family: var(--font-display); font-size: 1.9rem;
  font-weight: 800; color: var(--forest); line-height: 1;
}

/* ── MARKET ─────────────────────────────────────────────── */
.market-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--rule); margin-top: 60px;
}
.market-cell {
  padding: 34px 26px; border-right: 1px solid var(--rule);
  background: var(--white); position: relative; overflow: hidden;
  transition: background 0.3s;
}
.market-cell:hover { background: var(--parch); }
.market-cell:last-child { border-right: none; }
.market-cell::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 3px; height: 0; background: var(--brass);
  transition: height 0.4s;
}
.market-cell:hover::after { height: 100%; }
.market-fig {
  font-family: var(--font-display); font-size: 2.2rem;
  font-weight: 800; color: var(--forest); line-height: 1; margin-bottom: 4px;
}
.market-fig em { font-style: italic; color: var(--brass); }
.market-unit {
  font-family: var(--font-mono); font-size: 0.58rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px;
}
.market-desc { font-size: 0.84rem; color: var(--muted); line-height: 1.6; }

/* ── BUYERS ─────────────────────────────────────────────── */
.buyer-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 22px; margin-top: 54px;
}
.buyer-card {
  padding: 34px 30px; background: var(--white);
  border: 1px solid var(--rule); border-left: 3px solid var(--brass);
  transition: border-left-color 0.2s, background 0.2s;
}
.buyer-card:hover { border-left-color: var(--forest); background: var(--parch); }
.buyer-card h3 {
  font-family: var(--font-display); font-size: 1.12rem;
  font-weight: 700; color: var(--forest); margin-bottom: 10px;
}
.buyer-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

/* ── BLOG ───────────────────────────────────────────────── */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 26px; margin-top: 52px;
}
.blog-card {
  background: var(--white); border: 1px solid var(--rule);
  overflow: hidden; transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 44px rgba(26,51,38,0.1);
}
.blog-thumb {
  height: 150px; background: var(--forest);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.blog-thumb-num {
  font-family: var(--font-display); font-size: 5rem;
  font-weight: 800; font-style: italic;
  color: rgba(232,212,168,0.12); line-height: 1;
}
.blog-thumb-label {
  position: absolute; bottom: 12px; left: 16px;
  font-family: var(--font-mono); font-size: 0.58rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brass-pale);
}
.blog-body { padding: 26px 22px; }
.blog-date {
  font-family: var(--font-mono); font-size: 0.6rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--brass); margin-bottom: 10px;
}
.blog-card h3 {
  font-family: var(--font-display); font-size: 1.1rem;
  font-weight: 700; color: var(--forest);
  margin-bottom: 10px; line-height: 1.25;
}
.blog-card p { font-size: 0.87rem; color: var(--muted); line-height: 1.62; }
.blog-link {
  display: inline-block; margin-top: 16px;
  font-family: var(--font-mono); font-size: 0.63rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--forest); border-bottom: 1px solid var(--rule-brass);
  padding-bottom: 2px;
}

/* ── TRUST STRIP ────────────────────────────────────────── */
.trust-strip {
  background: var(--parch-dark);
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  padding: 26px 0;
}
.trust-row {
  display: flex; align-items: center;
  justify-content: center; gap: 48px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 0.63rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
}
.trust-item strong { color: var(--forest); }
.trust-pipe { width: 1px; height: 22px; background: var(--rule); }

/* ── CTA ────────────────────────────────────────────────── */
.cta-section {
  background: var(--forest); position: relative;
  overflow: hidden; text-align: center;
}
.cta-section::before {
  content: ''; position: absolute; top: -80px; left: 50%;
  transform: translateX(-50%); width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(160,120,64,0.14) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section .section-sub {
  margin: 0 auto 40px; color: rgba(232,212,168,0.6);
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-note {
  margin-top: 22px; font-family: var(--font-mono);
  font-size: 0.6rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(232,212,168,0.3);
}

/* ── FOOTER ─────────────────────────────────────────────── */
.footer { background: var(--ink); padding: 52px 0 28px; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 52px; margin-bottom: 40px;
}
.footer-logo {
  font-family: var(--font-display); font-size: 1.25rem;
  font-weight: 800; color: var(--parch);
  display: block; margin-bottom: 14px;
}
.footer-logo span { color: var(--brass); }
.footer-brand p {
  font-size: 0.87rem; color: rgba(245,240,232,0.4);
  max-width: 300px; line-height: 1.65;
}
.footer-col h4 {
  font-family: var(--font-mono); font-size: 0.6rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brass-pale); margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.87rem; color: rgba(245,240,232,0.4); }
.footer-col ul a:hover { color: var(--brass-pale); }
.footer-bottom {
  border-top: 1px solid rgba(245,240,232,0.07);
  padding-top: 20px;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p {
  font-family: var(--font-mono); font-size: 0.58rem;
  letter-spacing: 0.08em; color: rgba(245,240,232,0.28);
  text-transform: uppercase;
}
.mp-badges { display: flex; gap: 8px; }
.mp-badge {
  font-family: var(--font-mono); font-size: 0.56rem;
  letter-spacing: 0.08em; padding: 4px 10px;
  border: 1px solid rgba(245,240,232,0.1);
  color: rgba(245,240,232,0.28); text-transform: uppercase;
}

/* ── OFFER PAGE ─────────────────────────────────────────── */
.offer-hero {
  padding: 140px 0 80px; background: var(--forest);
  text-align: center; position: relative; overflow: hidden;
}
.offer-hero::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
}
.form-shell {
  max-width: 680px; margin: 0 auto;
  background: var(--white); border: 1px solid var(--rule);
  padding: 52px 48px; position: relative;
}
.form-shell::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--brass), var(--forest));
}
.form-group { margin-bottom: 22px; }
.form-label {
  display: block; font-family: var(--font-mono);
  font-size: 0.62rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%; background: var(--parch);
  border: 1px solid var(--rule); color: var(--ink);
  font-family: var(--font-body); font-size: 0.97rem;
  padding: 12px 16px; outline: none;
  transition: border-color 0.2s; border-radius: 0; appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--forest); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; padding: 16px; font-size: 0.78rem; }
.trust-icons {
  max-width: 680px; margin: 28px auto 0;
  display: flex; gap: 28px; justify-content: center; flex-wrap: wrap;
}
.trust-icon-item {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 0.63rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted);
}

/* ── BLOG POST ──────────────────────────────────────────── */
.post-hero {
  padding: 140px 0 64px; background: var(--forest);
  border-bottom: 3px solid var(--brass);
}
.post-hero .label { color: var(--brass-pale); }
.post-hero .label::before { background: var(--brass-pale); }
.post-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 3.1rem);
  font-weight: 800; color: var(--parch);
  max-width: 820px; line-height: 1.1;
  margin-bottom: 22px; letter-spacing: -0.01em;
}
.post-meta {
  font-family: var(--font-mono); font-size: 0.63rem;
  color: rgba(232,212,168,0.45); letter-spacing: 0.1em;
  display: flex; gap: 20px; text-transform: uppercase; flex-wrap: wrap;
}
.post-body {
  max-width: 760px; margin: 0 auto; padding: 72px 28px 96px;
}
.post-body h2 {
  font-family: var(--font-display); font-size: 1.8rem;
  font-weight: 800; color: var(--forest);
  margin: 52px 0 16px; letter-spacing: -0.01em;
}
.post-body h3 {
  font-family: var(--font-display); font-size: 1.2rem;
  font-style: italic; color: var(--brass); margin: 36px 0 12px;
}
.post-body p { color: var(--ink-mid); margin-bottom: 18px; font-size: 1.02rem; line-height: 1.78; }
.post-body strong { color: var(--forest); font-weight: 600; }
.post-body ul { margin: 14px 0 22px; display: flex; flex-direction: column; gap: 10px; }
.post-body ul li {
  color: var(--muted); font-size: 0.97rem;
  padding-left: 22px; position: relative; line-height: 1.65;
}
.post-body ul li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--brass); font-size: 0.8rem;
}
.post-callout {
  border-left: 3px solid var(--brass); background: var(--parch);
  padding: 26px 30px; margin: 38px 0;
}
.post-callout p { color: var(--ink-mid) !important; margin: 0 0 14px; font-style: italic; }
.post-callout p:last-child { margin: 0; }

/* ── WHY PAGE ───────────────────────────────────────────── */
.why-hero { padding: 140px 0 80px; background: var(--forest); border-bottom: 3px solid var(--brass); }
.pillar { padding: 68px 0; border-bottom: 1px solid var(--rule); }
.pillar:last-child { border-bottom: none; }
.pillar-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 38px; }
.pillar-card {
  padding: 26px; background: var(--white);
  border: 1px solid var(--rule); border-top: 2px solid var(--brass);
}
.pillar-card h4 {
  font-family: var(--font-display); font-size: 1.02rem;
  font-weight: 700; color: var(--forest); margin-bottom: 8px;
}
.pillar-card p { font-size: 0.86rem; color: var(--muted); line-height: 1.65; }

/* ── BLOG INDEX ─────────────────────────────────────────── */
.blog-hero { padding: 140px 0 64px; background: var(--forest); border-bottom: 3px solid var(--brass); }

/* ── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.65s ease both; }
.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.22s; }
.d3 { animation-delay: 0.34s; }
.d4 { animation-delay: 0.46s; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1000px) {
  .hero-canvas-wrap { width: 42%; }
  .feature-inner { grid-template-columns: 1fr; gap: 40px; }
  .market-row { grid-template-columns: 1fr 1fr; }
  .market-cell:nth-child(2) { border-right: none; }
  .market-cell { border-bottom: 1px solid var(--rule); }
  .market-cell:nth-child(3), .market-cell:nth-child(4) { border-bottom: none; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 66px; left: 0; right: 0;
    background: var(--parch); padding: 28px;
    border-bottom: 1px solid var(--rule); gap: 22px; z-index: 99;
  }
  .nav-links.open a { font-size: 0.85rem; }
  .hero-canvas-wrap { display: none; }
  .hero-veil { display: none; }
  .use-grid { grid-template-columns: 1fr; }
  .use-card { border-right: none; }
  .use-card:nth-last-child(-n+3) { border-bottom: 1px solid var(--rule); }
  .use-card:last-child { border-bottom: none; }
  .blog-grid { grid-template-columns: 1fr; }
  .buyer-grid { grid-template-columns: 1fr; }
  .market-row { grid-template-columns: 1fr; }
  .market-cell { border-right: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .form-2col { grid-template-columns: 1fr; }
  .form-shell { padding: 32px 24px; }
  .hf-cell { padding: 16px 18px; }
  .hero-footer-inner { flex-wrap: wrap; }
  .hf-cell { flex: 0 0 50%; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .pillar-grid { grid-template-columns: 1fr; }
}
