/* ============================================================
   OnChainVillas.com — Premium Domain Landing
   Aesthetic: Mediterranean Luxury · Warm Editorial · Light
   Fonts: Playfair Display + Instrument Sans + JetBrains Mono
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Instrument+Sans:wght@300;400;500;600&family=JetBrains+Mono:wght@300;400;500&display=swap');

/* ── Variables ───────────────────────────────────────────── */
:root {
  --cream:      #f5f0e8;
  --cream-2:    #ede7d9;
  --cream-3:    #e3dccf;
  --sand:       #c9b99a;
  --sand-dim:   #a89878;
  --terra:      #c4623a;
  --terra-2:    #d97a50;
  --terra-dim:  #8a3f22;
  --azure:      #2a6b8a;
  --azure-2:    #3d8fb5;
  --azure-dim:  #1a4a62;
  --ink:        #1c1814;
  --ink-2:      #2e2820;
  --charcoal:   #4a4038;
  --silver:     #7a6e62;
  --white:      #fdfaf5;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Instrument Sans', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --max-w:  1160px;
  --gutter: clamp(20px, 5vw, 60px);
  --radius: 3px;
  --border: 1px solid rgba(169,148,120,0.3);
  --border-dark: 1px solid rgba(169,148,120,0.5);
}

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

/* ── Utility ─────────────────────────────────────────────── */
.container   { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.mono        { font-family: var(--font-mono); }
.serif       { font-family: var(--font-display); }
.terra       { color: var(--terra); }
.azure       { color: var(--azure); }

.tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terra);
  border: 1px solid rgba(196,98,58,.35);
  padding: 3px 10px;
  border-radius: 2px;
  background: rgba(196,98,58,.06);
}
.tag.azure {
  color: var(--azure);
  border-color: rgba(42,107,138,.3);
  background: rgba(42,107,138,.06);
}
.tag.sand {
  color: var(--sand-dim);
  border-color: rgba(168,152,120,.4);
  background: rgba(168,152,120,.08);
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .22s ease;
  border: none;
}
.btn-primary {
  background: var(--terra);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--terra-2);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(196,98,58,.3);
}
.btn-outline {
  background: transparent;
  color: var(--terra);
  border: 1.5px solid var(--terra);
}
.btn-outline:hover {
  background: var(--terra);
  color: var(--white);
}
.btn-azure {
  background: var(--azure);
  color: var(--white);
}
.btn-azure:hover {
  background: var(--azure-2);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(42,107,138,.3);
}

.section-label {
  font-family: var(--font-mono);
  font-size: .67rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sand-dim);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::after {
  content: '';
  flex: 1;
  max-width: 40px;
  height: 1px;
  background: var(--sand);
  display: inline-block;
}

/* ── Texture overlay ─────────────────────────────────────── */
.textured {
  position: relative;
}
.textured::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: .4;
}

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(245,240,232,.92);
  backdrop-filter: blur(16px);
  border-bottom: var(--border);
  transition: box-shadow .3s;
}
.nav.scrolled {
  box-shadow: 0 2px 24px rgba(28,24,20,.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.01em;
}
.nav-logo span { color: var(--terra); }
.nav-logo sup {
  font-family: var(--font-mono);
  font-size: .5rem;
  color: var(--silver);
  letter-spacing: .05em;
  margin-left: 2px;
  font-weight: 400;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color .2s;
}
.nav-links a:hover { color: var(--terra); }
.nav-links a.active { color: var(--terra); }
.nav-links .nav-cta {
  background: var(--terra);
  color: var(--white);
  padding: 8px 20px;
  border-radius: var(--radius);
}
.nav-links .nav-cta:hover {
  background: var(--terra-2);
  color: var(--white);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: all .2s;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 62px;
  position: relative;
  overflow: hidden;
}

/* Left panel — warm cream */
.hero-left {
  padding: clamp(60px, 8vw, 100px) var(--gutter) clamp(60px, 8vw, 100px) clamp(20px, 6vw, 80px);
  position: relative;
  z-index: 2;
}

/* Right panel — illustrated villa */
.hero-right {
  position: relative;
  height: 100vh;
  background: linear-gradient(
    160deg,
    #d4e8f0 0%,
    #b8d8e8 25%,
    #c8dfc4 50%,
    #e8c89a 75%,
    #d4956a 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

/* CSS villa illustration */
.villa-scene {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0;
}

/* Sky */
.villa-sky {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(180deg, #7bb8d4 0%, #a8d4e8 60%, #d4e8f0 100%);
}
/* Sun */
.villa-sun {
  position: absolute;
  top: 14%;
  right: 22%;
  width: 60px; height: 60px;
  background: radial-gradient(circle, #f5d070 0%, #e8a840 60%, rgba(232,168,64,0) 100%);
  border-radius: 50%;
  animation: sunGlow 4s ease-in-out infinite;
}
@keyframes sunGlow {
  0%,100% { box-shadow: 0 0 30px 10px rgba(245,208,112,.3); }
  50%      { box-shadow: 0 0 60px 20px rgba(245,208,112,.5); }
}
/* Sea */
.villa-sea {
  position: absolute;
  bottom: 22%;
  left: 0; right: 0;
  height: 18%;
  background: linear-gradient(180deg, #5a9fb8 0%, #3a7a9a 100%);
}
.villa-sea-shimmer {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0px,
    transparent 20px,
    rgba(255,255,255,.08) 20px,
    rgba(255,255,255,.08) 22px
  );
  animation: seaShimmer 6s linear infinite;
}
@keyframes seaShimmer { from{transform:translateX(0)} to{transform:translateX(22px)} }

/* Ground / Terrace */
.villa-ground {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 22%;
  background: linear-gradient(180deg, #c8a878 0%, #b89060 100%);
}
.villa-terrace-line {
  position: absolute;
  top: 10px; left: 0; right: 0;
  height: 2px;
  background: rgba(255,255,255,.2);
}
/* Pool */
.villa-pool {
  position: absolute;
  bottom: 24%;
  left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 32px;
  background: linear-gradient(180deg, #4ab0d0 0%, #2a90b8 100%);
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,.3);
  overflow: hidden;
}
.villa-pool-ripple {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0px,
    transparent 14px,
    rgba(255,255,255,.15) 14px,
    rgba(255,255,255,.15) 16px
  );
  animation: seaShimmer 2s linear infinite;
}

/* Main villa body */
.villa-main {
  position: absolute;
  bottom: 22%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.villa-roof {
  width: 0;
  height: 0;
  border-left: 104px solid transparent;
  border-right: 104px solid transparent;
  border-bottom: 44px solid #b04820;
  position: relative;
  z-index: 2;
}
.villa-roof-ridge {
  position: absolute;
  bottom: -46px;
  left: 50%;
  transform: translateX(-50%);
  width: 208px;
  height: 8px;
  background: #8a3818;
  border-radius: 0;
}
.villa-body {
  width: 180px;
  background: #f0e8d8;
  border: 2px solid #d4c8b0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 10px;
  position: relative;
  z-index: 1;
}
.villa-window {
  height: 28px;
  background: linear-gradient(135deg, #a8d0e8 0%, #78b0d0 100%);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 2px 2px 12px 12px;
  animation: winLight 3s ease-in-out infinite;
}
.villa-window:nth-child(2) { animation-delay: .8s; }
.villa-window:nth-child(3) { animation-delay: 1.6s; }
@keyframes winLight { 0%,100%{opacity:.8} 50%{opacity:1} }
.villa-door {
  grid-column: 2;
  height: 36px;
  background: linear-gradient(180deg, #7a4820 0%, #5a3010 100%);
  border-radius: 2px 2px 20px 20px;
  border: 1px solid rgba(0,0,0,.2);
}
/* Arches below body */
.villa-arches {
  width: 180px;
  height: 20px;
  background: #f0e8d8;
  border-left: 2px solid #d4c8b0;
  border-right: 2px solid #d4c8b0;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}
.villa-arch-span {
  width: 30px; height: 18px;
  border-top: 2px solid #c4a880;
  border-left: 2px solid #c4a880;
  border-right: 2px solid #c4a880;
  border-radius: 50% 50% 0 0;
}

/* Wing */
.villa-wing {
  position: absolute;
  bottom: 22%;
  width: 80px;
  background: #ece4d4;
  border: 2px solid #d4c8b0;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.villa-wing.left  { left: calc(50% - 180px); }
.villa-wing.right { right: calc(50% - 180px); }
.villa-wing-window {
  height: 22px;
  background: linear-gradient(135deg, #a8d0e8 0%, #78b0d0 100%);
  border-radius: 1px 1px 8px 8px;
  border: 1px solid rgba(255,255,255,.4);
}
.villa-wing-roof {
  position: absolute;
  top: -16px; left: -2px; right: -2px;
  height: 18px;
  background: #b04820;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

/* Palm trees */
.palm {
  position: absolute;
  bottom: 22%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.palm.left  { left: 8%; }
.palm.right { right: 8%; }
.palm-trunk {
  width: 8px;
  height: 60px;
  background: linear-gradient(180deg, #8a6840 0%, #6a4820 100%);
  border-radius: 4px;
  transform: rotate(3deg);
}
.palm.right .palm-trunk { transform: rotate(-4deg); }
.palm-fronds {
  position: absolute;
  bottom: 55px;
  font-size: 1.8rem;
  transform: rotate(-10deg);
  animation: palmSway 5s ease-in-out infinite;
}
.palm.right .palm-fronds { transform: rotate(10deg); animation-delay: 1.5s; }
@keyframes palmSway {
  0%,100% { transform: rotate(-10deg); }
  50%      { transform: rotate(-4deg); }
}

/* Token overlay on villa */
.villa-token-overlay {
  position: absolute;
  top: 20px; right: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
}
.villa-token-badge {
  background: rgba(245,240,232,.9);
  border: 1px solid rgba(169,148,120,.5);
  border-radius: 4px;
  padding: 8px 12px;
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .1em;
  color: var(--terra);
  backdrop-filter: blur(8px);
  animation: badgeFade 3s ease-in-out infinite;
}
.villa-token-badge span { color: var(--charcoal); }
.villa-token-badge:nth-child(2) { animation-delay: 1s; color: var(--azure); }
.villa-token-badge:nth-child(3) { animation-delay: 2s; color: var(--sand-dim); }
@keyframes badgeFade { 0%,100%{opacity:.85} 50%{opacity:1} }

/* Hero text area */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.hero-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--terra);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse { 0%,100%{opacity:1; transform:scale(1)} 50%{opacity:.5; transform:scale(.8)} }
.hero-eyebrow-text {
  font-family: var(--font-mono);
  font-size: .67rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--silver);
}

.hero-domain {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: 6px;
}
.hero-domain .onchain { color: var(--terra); }
.hero-domain .villas  { color: var(--ink); }
.hero-domain .tld     { font-size: .38em; font-weight: 400; color: var(--silver); letter-spacing: .02em; vertical-align: super; margin-left: 4px; }

.hero-divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--terra), transparent);
  margin: 20px 0;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 400;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 460px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stat-row {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: var(--border);
}
.hero-stat {}
.hero-stat-val {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--terra);
  line-height: 1;
}
.hero-stat-lbl {
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: 3px;
}

/* ── MARQUEE ─────────────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  border-top: var(--border);
  border-bottom: var(--border);
  padding: 13px 0;
  background: var(--cream-2);
}
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-item {
  font-family: var(--font-mono);
  font-size: .67rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sand-dim);
  white-space: nowrap;
}
.marquee-item span { color: var(--terra); margin: 0 8px; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── SECTIONS SHARED ──────────────────────────────────────── */
.section { padding: clamp(64px, 9vw, 112px) 0; }
.section-alt { background: var(--cream-2); }
.section-dark {
  background: var(--ink);
  color: var(--cream);
}
.section-dark .section-label { color: rgba(201,185,154,.5); }
.section-dark .section-label::after { background: rgba(201,185,154,.3); }
.section-dark .section-title { color: var(--cream); }
.section-dark .section-body   { color: rgba(201,185,154,.8); }

.section-header { margin-bottom: clamp(40px, 6vw, 68px); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.025em;
  color: var(--ink);
}
.section-title em { font-style: italic; color: var(--terra); }
.section-title .azem { font-style: italic; color: var(--azure); }
.section-body {
  font-size: .97rem;
  color: var(--charcoal);
  line-height: 1.8;
  max-width: 600px;
  margin-top: 16px;
}

/* ── FEATURE CARDS ────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.card {
  background: var(--white);
  border: var(--border);
  border-radius: 4px;
  padding: 32px 28px;
  transition: transform .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--terra-dim), var(--terra));
  opacity: 0;
  transition: opacity .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(28,24,20,.1); }
.card:hover::before { opacity: 1; }
.card-icon { font-size: 1.8rem; margin-bottom: 16px; }
.card-num {
  position: absolute;
  top: 20px; right: 22px;
  font-family: var(--font-mono);
  font-size: .62rem;
  color: var(--sand);
  letter-spacing: .1em;
}
.card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}
.card-body { font-size: .875rem; color: var(--charcoal); line-height: 1.75; }

/* ── SPLIT ────────────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-visual {
  position: relative;
  background: var(--cream-2);
  border: var(--border);
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.split-list { margin-top: 24px; display: flex; flex-direction: column; gap: 16px; }
.split-item { display: flex; gap: 14px; align-items: flex-start; }
.split-bullet {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(196,98,58,.12);
  border: 1px solid rgba(196,98,58,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.split-bullet::after {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--terra);
}
.split-item-text { font-size: .9rem; color: var(--charcoal); line-height: 1.7; }
.split-item-text strong { color: var(--ink); font-weight: 600; }

/* ── CSS Diagrams ─────────────────────────────────────────── */
/* Tokenization fractal diagram */
.diagram-rwa {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  gap: 8px;
}
.rwa-asset-box {
  width: 120px;
  background: var(--white);
  border: 1.5px solid var(--terra);
  border-radius: 3px;
  padding: 10px;
  text-align: center;
}
.rwa-asset-icon { font-size: 1.6rem; }
.rwa-asset-label {
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .1em;
  color: var(--terra);
  text-transform: uppercase;
  margin-top: 4px;
}
.rwa-arrow {
  width: 2px; height: 28px;
  background: linear-gradient(to bottom, var(--terra), var(--sand));
  position: relative;
}
.rwa-arrow::after {
  content: '▾';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--sand);
  font-size: .7rem;
}
.rwa-chain-bar {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  background: var(--ink);
  border-radius: 2px;
}
.rwa-chain-node {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--terra);
  animation: chainPulse 2s ease-in-out infinite;
}
.rwa-chain-node:nth-child(2) { animation-delay: .4s; background: var(--azure); }
.rwa-chain-node:nth-child(3) { animation-delay: .8s; }
.rwa-chain-link {
  width: 18px; height: 2px;
  background: rgba(201,185,154,.3);
}
.rwa-chain-label {
  font-family: var(--font-mono);
  font-size: .55rem;
  color: rgba(201,185,154,.6);
  letter-spacing: .1em;
  margin-left: 6px;
}
@keyframes chainPulse { 0%,100%{opacity:.6} 50%{opacity:1; box-shadow:0 0 6px currentColor} }
.rwa-tokens-row {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.rwa-token {
  width: 44px; height: 44px;
  background: var(--white);
  border: 1.5px solid var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: .52rem;
  color: var(--terra);
  animation: tokenBob 3s ease-in-out infinite;
}
.rwa-token:nth-child(2) { animation-delay: .6s; }
.rwa-token:nth-child(3) { animation-delay: 1.2s; }
.rwa-token:nth-child(4) { animation-delay: 1.8s; }
@keyframes tokenBob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-3px)} }
.rwa-token-label {
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .1em;
  color: var(--sand-dim);
  text-transform: uppercase;
  margin-top: 4px;
}

/* Stablecoin flow diagram */
.diagram-stable {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  gap: 0;
  flex-direction: column;
}
.stable-flow {
  display: flex;
  align-items: center;
  gap: 8px;
}
.stable-node {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 2px 12px rgba(28,24,20,.08);
}
.stable-node.primary {
  width: 72px; height: 72px;
  border-color: var(--azure);
  border-width: 2px;
  font-size: 1.5rem;
}
.stable-arrow-h {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--sand), var(--terra));
  position: relative;
  min-width: 24px;
}
.stable-arrow-h::after {
  content: '▶';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--terra);
  font-size: .55rem;
}
.stable-labels {
  display: flex;
  gap: 0;
  justify-content: space-between;
  width: 100%;
  margin-top: 8px;
  padding: 0 4px;
}
.stable-label {
  font-family: var(--font-mono);
  font-size: .55rem;
  color: var(--silver);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .08em;
  width: 72px;
}
.stable-usdc-bar {
  width: 80%;
  margin-top: 16px;
  background: rgba(42,107,138,.08);
  border: 1px solid rgba(42,107,138,.2);
  border-radius: 2px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.stable-usdc-label {
  font-family: var(--font-mono);
  font-size: .6rem;
  color: var(--azure);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.stable-usdc-val {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--azure);
}
.stable-settle-time {
  font-family: var(--font-mono);
  font-size: .58rem;
  color: var(--silver);
  margin-top: 6px;
  letter-spacing: .08em;
}

/* ── BLOG CARDS ───────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border: var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(28,24,20,.1);
}
.blog-card-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--terra-dim), var(--terra-2));
}
.blog-card-body { padding: 28px; flex: 1; }
.blog-card-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.blog-card-date {
  font-family: var(--font-mono);
  font-size: .62rem;
  color: var(--silver);
}
.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 10px;
  transition: color .2s;
}
.blog-card:hover .blog-card-title { color: var(--terra); }
.blog-card-excerpt { font-size: .875rem; color: var(--charcoal); line-height: 1.7; }
.blog-card-footer {
  padding: 16px 28px;
  border-top: var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.read-more {
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--terra);
}
.read-time {
  font-family: var(--font-mono);
  font-size: .62rem;
  color: var(--silver);
}

/* ── METRICS ──────────────────────────────────────────────── */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.metric-card {
  background: var(--white);
  border: var(--border);
  border-radius: 4px;
  padding: 24px 20px;
  text-align: center;
}
.metric-val {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--terra);
  line-height: 1;
}
.metric-lbl {
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: 6px;
  line-height: 1.4;
}
.section-dark .metric-card {
  background: rgba(255,255,255,.06);
  border-color: rgba(201,185,154,.15);
}
.section-dark .metric-val { color: var(--terra-2); }
.section-dark .metric-lbl { color: rgba(201,185,154,.55); }

/* ── TIMELINE ─────────────────────────────────────────────── */
.timeline {
  position: relative;
  padding-left: 36px;
  max-width: 620px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 20px;
  width: 1px;
  background: linear-gradient(to bottom, var(--terra), transparent);
}
.timeline-item {
  position: relative;
  padding-bottom: 40px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -40px; top: 7px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--terra);
  box-shadow: 0 0 0 4px rgba(196,98,58,.15);
}
.timeline-label {
  font-family: var(--font-mono);
  font-size: .65rem;
  color: var(--terra);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.timeline-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.timeline-body { font-size: .875rem; color: var(--charcoal); line-height: 1.7; }

/* ── OFFER PAGE ───────────────────────────────────────────── */
.offer-hero {
  padding: 110px 0 72px;
  background: var(--cream-2);
  border-bottom: var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Decorative arches */
.offer-arch {
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 160px;
  border-top: 1px solid rgba(169,148,120,.2);
  border-left: 1px solid rgba(169,148,120,.2);
  border-right: 1px solid rgba(169,148,120,.2);
  border-radius: 300px 300px 0 0;
  pointer-events: none;
}
.offer-arch:nth-child(2) { width: 400px; height: 110px; border-color: rgba(169,148,120,.15); }
.offer-arch:nth-child(3) { width: 240px; height: 70px; border-color: rgba(169,148,120,.12); }

.offer-domain-display {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1;
  margin: 20px 0;
}
.offer-form-wrap {
  max-width: 660px;
  margin: 0 auto;
  background: var(--white);
  border: var(--border);
  border-radius: 6px;
  padding: 48px;
  box-shadow: 0 8px 40px rgba(28,24,20,.07);
}
.offer-form-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.offer-form-subtitle {
  font-size: .875rem;
  color: var(--silver);
  margin-bottom: 28px;
}
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 7px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--cream);
  border: 1.5px solid var(--cream-3);
  border-radius: var(--radius);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: .9rem;
  padding: 11px 14px;
  transition: border-color .2s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--terra);
  background: var(--white);
}
.form-textarea { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit { width: 100%; padding: 15px; font-size: .85rem; margin-top: 6px; }
.form-note {
  font-family: var(--font-mono);
  font-size: .62rem;
  color: var(--silver);
  text-align: center;
  margin-top: 12px;
  line-height: 1.6;
}
.trust-signals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.trust-item {}
.trust-icon { font-size: 1.4rem; margin-bottom: 8px; }
.trust-title {
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.trust-body { font-size: .78rem; color: var(--silver); line-height: 1.55; }
.listing-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 24px;
}
.listing-badge {
  background: var(--cream-2);
  border: var(--border);
  border-radius: 3px;
  padding: 9px 18px;
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .08em;
  color: var(--charcoal);
}
.listing-badge span { color: var(--terra); }

/* ── BLOG POST ────────────────────────────────────────────── */
.post-hero {
  padding: 110px 0 52px;
  border-bottom: var(--border);
  background: var(--cream-2);
}
.post-header-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.post-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.9rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.025em;
  color: var(--ink);
  max-width: 800px;
  margin-bottom: 18px;
}
.post-lead {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--charcoal);
  max-width: 660px;
  line-height: 1.6;
}
.post-content {
  max-width: 720px;
  margin: 56px 0 60px;
}
.post-content h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  margin: 40px 0 14px;
}
.post-content h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--terra);
  margin: 26px 0 8px;
}
.post-content p {
  color: var(--charcoal);
  line-height: 1.85;
  margin-bottom: 18px;
  font-size: .97rem;
}
.post-content strong { color: var(--ink); font-weight: 600; }
.post-content ul {
  margin: 14px 0 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.post-content ul li {
  color: var(--charcoal);
  font-size: .95rem;
  line-height: 1.7;
  padding-left: 18px;
  position: relative;
}
.post-content ul li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--terra);
  font-size: .5rem;
  top: 6px;
}
.post-content blockquote {
  border-left: 3px solid var(--terra);
  padding: 16px 24px;
  margin: 28px 0;
  background: rgba(196,98,58,.04);
}
.post-content blockquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
  margin: 0;
}
.post-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 36px;
  transition: color .2s;
}
.post-back:hover { color: var(--terra); }

/* ── WHY PAGE HERO ────────────────────────────────────────── */
.why-hero {
  padding: 110px 0 72px;
  background: var(--cream-2);
  border-bottom: var(--border);
  text-align: center;
}
.why-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: 1.1;
  max-width: 740px;
  margin: 16px auto;
  color: var(--ink);
}
.why-hero-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--charcoal);
  max-width: 520px;
  margin: 16px auto 0;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: var(--cream-2);
  padding: 52px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cream-2);
}
.footer-logo span { color: var(--terra-2); }
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-links a {
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(201,185,154,.55);
  transition: color .2s;
}
.footer-links a:hover { color: var(--terra-2); }
.footer-copy {
  font-family: var(--font-mono);
  font-size: .62rem;
  color: rgba(201,185,154,.35);
  text-align: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(201,185,154,.1);
}

/* ── FADE ANIMATIONS ──────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { height: 360px; }
  .hero-left { padding: 100px var(--gutter) 40px; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse { direction: ltr; }
  .trust-signals { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-stat-row { gap: 20px; }
  .offer-form-wrap { padding: 24px 18px; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid { grid-template-columns: 1fr; }
}
