/* ============================================
   TOKENIZEDEARTH.COM
   Aesthetic: Dark Terrain / Earth Tones
   Palette: #0e0b07 deep earth + #c8763a amber + #e8dcc8 parchment
   Fonts: Fraunces (display serif) + DM Mono (body/data)
   ============================================ */

:root {
  --earth:       #0e0b07;
  --earth-md:    #1a1208;
  --earth-lt:    #2a1e0e;
  --amber:       #c8763a;
  --amber-lt:    #e8944e;
  --amber-pale:  rgba(200,118,58,0.08);
  --parchment:   #e8dcc8;
  --parchment-md:#c4b89a;
  --parchment-dk:#8a7a62;
  --rust:        #7a3a1a;
  --white:       #f5f0e8;
  --border:      rgba(200,118,58,0.15);
  --border-lt:   rgba(232,220,200,0.1);
  --green-val:   #6aaa6a;
  --font-head:   'Fraunces', Georgia, serif;
  --font-mono:   'DM Mono', 'Courier New', monospace;
  --max-w:       1240px;
  --radius:      3px;
  --trans:       0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-mono); background: var(--earth); color: var(--parchment); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }

/* ---- NAV ---- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(14,11,7,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; height: 68px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--parchment); letter-spacing: 0.05em; }
.nav-logo span { color: var(--amber); }
.nav-links { list-style: none; display: flex; gap: 2.5rem; align-items: center; }
.nav-links a { font-size: 0.7rem; font-weight: 400; color: var(--parchment-dk); letter-spacing: 0.12em; text-transform: uppercase; transition: color var(--trans); }
.nav-links a:hover, .nav-links a.active { color: var(--parchment); }
.nav-cta { background: var(--amber) !important; color: var(--earth) !important; padding: 0.45rem 1.25rem !important; border-radius: var(--radius) !important; font-weight: 500 !important; }
.nav-cta:hover { background: var(--amber-lt) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--parchment); }
.mobile-menu { display: none; flex-direction: column; background: var(--earth-md); padding: 1rem 2rem 1.5rem; border-top: 1px solid var(--border); }
.mobile-menu a { color: var(--parchment-md); padding: 0.75rem 0; font-size: 0.875rem; border-bottom: 1px solid var(--border-lt); }
.mobile-menu.open { display: flex; }

/* ---- BUTTONS ---- */
.btn-amber { display: inline-block; background: var(--amber); color: var(--earth); font-family: var(--font-mono); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.9rem 2.25rem; border-radius: var(--radius); border: 2px solid var(--amber); transition: var(--trans); }
.btn-amber:hover { background: var(--amber-lt); border-color: var(--amber-lt); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(200,118,58,0.3); }
.btn-amber.btn-lg { padding: 1.1rem 2.75rem; font-size: 0.825rem; }
.btn-ghost-amber { display: inline-block; background: transparent; color: var(--parchment); font-family: var(--font-mono); font-size: 0.75rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.9rem 2rem; border-radius: var(--radius); border: 1px solid rgba(232,220,200,0.25); transition: var(--trans); }
.btn-ghost-amber:hover { border-color: var(--amber); color: var(--amber); }
.btn-text-amber { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; font-weight: 400; color: var(--amber); border-bottom: 1px solid rgba(200,118,58,0.3); padding-bottom: 2px; transition: var(--trans); }
.btn-text-amber:hover { border-color: var(--amber); }

/* ---- LABELS ---- */
.sec-label { font-family: var(--font-mono); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.75rem; }

/* ---- HERO ---- */
.hero { min-height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; padding: 120px 2rem 80px; overflow: hidden; }
.hero-topo {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(200,118,58,0.5) 40px, rgba(200,118,58,0.5) 41px),
                    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(200,118,58,0.3) 60px, rgba(200,118,58,0.3) 61px);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 30%, rgba(200,118,58,0.06) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 10% 80%, rgba(122,58,26,0.15) 0%, transparent 60%),
              linear-gradient(180deg, var(--earth) 0%, #150f06 100%);
}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 900px; }
.hero-label { display: inline-flex; align-items: center; gap: 0.75rem; background: var(--amber-pale); border: 1px solid var(--border); padding: 0.45rem 1.25rem; border-radius: 2px; font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); margin-bottom: 2rem; }
.label-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--amber); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero-h1 { font-family: var(--font-head); font-size: clamp(4rem, 9vw, 8rem); font-weight: 900; line-height: 0.95; color: var(--white); margin-bottom: 1.75rem; letter-spacing: -0.03em; }
.hero-h1 em { font-style: italic; color: var(--amber); }
.tld { font-style: normal; color: var(--parchment-dk); font-size: 0.35em; vertical-align: super; letter-spacing: 0; font-weight: 300; }
.hero-sub { font-size: clamp(0.9rem, 1.8vw, 1.05rem); color: var(--parchment-md); line-height: 1.85; font-weight: 300; margin-bottom: 2.5rem; max-width: 680px; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap; margin-bottom: 4rem; }
.hero-data { display: flex; justify-content: center; align-items: center; gap: 2.5rem; flex-wrap: wrap; padding-top: 2.5rem; border-top: 1px solid var(--border-lt); }
.hd-val { display: block; font-family: var(--font-head); font-size: 1.7rem; font-weight: 700; color: var(--amber); line-height: 1.1; }
.hd-lab { display: block; font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--parchment-dk); margin-top: 0.2rem; }
.hd-sep { width: 1px; height: 36px; background: var(--border-lt); }

/* ---- BAND ---- */
.band { background: var(--earth-lt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 0.9rem 0; }
.band-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; padding: 0 2rem; font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--parchment-dk); }
.bd { color: var(--amber); font-size: 0.5rem; }

/* ---- DOMAIN SECTION ---- */
.domain-section { padding: 7rem 0; background: var(--earth); }
.ds-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.ds-left h2 { font-family: var(--font-head); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 1.25rem; }
.ds-left p { font-size: 0.875rem; color: var(--parchment-md); line-height: 1.85; margin-bottom: 1rem; font-weight: 300; }
.domain-card { background: var(--earth-lt); border: 1px solid var(--border); border-top: 3px solid var(--amber); border-radius: var(--radius); overflow: hidden; }
.dc-top { background: var(--rust); padding: 1.75rem 2rem; }
.dc-label { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(232,220,200,0.5); margin-bottom: 0.5rem; }
.dc-name { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; color: var(--white); }
.dc-name span { color: var(--amber); }
.dc-rows { padding: 0.5rem 2rem 1.5rem; }
.dc-row { display: flex; justify-content: space-between; align-items: center; padding: 0.7rem 0; border-bottom: 1px solid var(--border-lt); font-family: var(--font-mono); font-size: 0.78rem; }
.dc-row:last-child { border-bottom: none; }
.dc-row > span:first-child { color: var(--parchment-dk); }
.dc-row > span:last-child { color: var(--parchment); }
.val-amber { color: var(--amber) !important; font-weight: 500; }
.val-green { color: var(--green-val) !important; font-weight: 500; }
.dc-btn { display: block; margin: 0 2rem 2rem; background: var(--amber); color: var(--earth); text-align: center; padding: 0.875rem; border-radius: var(--radius); font-family: var(--font-mono); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; transition: var(--trans); }
.dc-btn:hover { background: var(--amber-lt); }

/* ---- RWA SECTION ---- */
.rwa-section { padding: 7rem 0; background: var(--earth-md); }
.rwa-title { font-family: var(--font-head); font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 3.5rem; max-width: 700px; }
.rwa-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.rwa-card { background: var(--earth-md); padding: 2.5rem; transition: var(--trans); }
.rwa-card:hover { background: var(--earth-lt); }
.rwa-icon { font-size: 1.5rem; margin-bottom: 1.25rem; }
.rwa-card h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 600; color: var(--white); margin-bottom: 0.75rem; }
.rwa-card p { font-size: 0.825rem; color: var(--parchment-md); line-height: 1.8; font-weight: 300; }

/* ---- BUYERS ---- */
.buyers-section { padding: 7rem 0; background: var(--earth); }
.buyers-section h2 { font-family: var(--font-head); font-size: clamp(2rem, 3.5vw, 2.6rem); font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 3.5rem; }
.buyers-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.buyer-card { background: var(--earth-lt); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; transition: var(--trans); }
.buyer-card:hover { border-color: var(--amber); transform: translateY(-3px); }
.bn { font-family: var(--font-head); font-size: 2.5rem; font-weight: 900; color: rgba(200,118,58,0.12); line-height: 1; display: block; margin-bottom: 1rem; }
.buyer-card h4 { font-family: var(--font-head); font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 0.6rem; }
.buyer-card p { font-size: 0.825rem; color: var(--parchment-md); line-height: 1.7; font-weight: 300; }

/* ---- BLOG PREV ---- */
.blog-prev { padding: 7rem 0; background: var(--earth-md); }
.bp-hdr { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.5rem; }
.bp-hdr h2 { font-family: var(--font-head); font-size: 2.2rem; font-weight: 700; color: var(--white); }
.bp-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 1.25rem; }
.bp-card { display: block; background: var(--earth-lt); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; transition: var(--trans); }
.bp-card:hover { border-color: var(--amber); transform: translateY(-2px); }
.bp-card.bp-feat { grid-row: 1/3; display: flex; flex-direction: column; justify-content: flex-end; min-height: 360px; background: linear-gradient(to top, var(--earth) 30%, var(--rust) 100%); border-color: var(--border); }
.bp-tag { display: inline-block; font-family: var(--font-mono); font-size: 0.6rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); border: 1px solid var(--border); background: var(--amber-pale); padding: 0.25rem 0.7rem; border-radius: 2px; margin-bottom: 1rem; }
.bp-card h3 { font-family: var(--font-head); color: var(--white); line-height: 1.35; margin-bottom: 0.75rem; }
.bp-card.bp-feat h3 { font-size: 1.35rem; }
.bp-card:not(.bp-feat) h3 { font-size: 0.975rem; }
.bp-card p { font-size: 0.825rem; color: var(--parchment-md); line-height: 1.7; margin-bottom: 1.25rem; font-weight: 300; }
.bp-read { font-family: var(--font-mono); font-size: 0.75rem; color: var(--amber); }

/* ---- CTA ---- */
.cta-sec { padding: 6rem 0; background: var(--earth-lt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 3rem; }
.cta-left h2 { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 0.75rem; }
.cta-left h2 em { font-style: italic; color: var(--amber); }
.cta-left p { font-size: 0.875rem; color: var(--parchment-md); max-width: 420px; line-height: 1.7; font-weight: 300; }
.cta-right { display: flex; flex-direction: column; gap: 1rem; flex-shrink: 0; }

/* ---- FOOTER ---- */
.footer { background: var(--earth); border-top: 1px solid var(--border); padding: 3rem 0 1.5rem; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 3rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.footer-brand .nav-logo { display: block; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.775rem; color: var(--parchment-dk); max-width: 340px; line-height: 1.7; font-weight: 300; }
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; align-items: center; }
.footer-links a { font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--parchment-dk); transition: color var(--trans); }
.footer-links a:hover { color: var(--amber); }
.footer-bottom { border-top: 1px solid var(--border-lt); padding-top: 1.5rem; font-family: var(--font-mono); font-size: 0.7rem; color: var(--parchment-dk); }

/* ---- PAGE HERO ---- */
.page-hero { background: var(--earth-md); padding: 148px 2rem 80px; position: relative; overflow: hidden; }
.page-hero::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 60% 60% at 50% 0%, rgba(200,118,58,0.05) 0%, transparent 70%); }
.page-hero h1 { font-family: var(--font-head); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 1.25rem; }
.page-hero p { color: var(--parchment-md); font-size: 1rem; max-width: 600px; line-height: 1.8; font-weight: 300; }

/* ---- WHY PAGE ---- */
.why-sec { padding: 5rem 0; background: var(--earth); }
.why-sec:nth-child(even) { background: var(--earth-md); }
.why-block { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-block.rev { direction: rtl; }
.why-block.rev > * { direction: ltr; }
.why-text h2 { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; line-height: 1.2; }
.why-text p { font-size: 0.875rem; color: var(--parchment-md); line-height: 1.85; margin-bottom: 1rem; font-weight: 300; }
.why-visual { background: var(--earth-lt); border: 1px solid var(--border); border-top: 2px solid var(--amber); border-radius: var(--radius); padding: 2.5rem; }
.vis-quote { font-family: var(--font-head); font-size: 1.3rem; color: var(--parchment); font-style: italic; line-height: 1.5; margin-bottom: 1rem; }
.vis-attr { font-family: var(--font-mono); font-size: 0.65rem; color: var(--amber); letter-spacing: 0.12em; text-transform: uppercase; }
.stat-big-block { text-align: center; padding: 1.5rem 0; }
.stat-huge { font-family: var(--font-head); font-size: 4rem; font-weight: 900; color: var(--amber); display: block; line-height: 1; }
.stat-sub { font-family: var(--font-mono); font-size: 0.75rem; color: var(--parchment-dk); display: block; margin-top: 0.5rem; line-height: 1.5; }
.data-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.85rem; }
.dr-lbl { font-family: var(--font-mono); font-size: 0.72rem; color: var(--parchment-dk); min-width: 110px; }
.dr-track { flex:1; height:4px; background:rgba(232,220,200,0.08); border-radius:2px; overflow:hidden; }
.dr-fill { height:100%; background:linear-gradient(to right, var(--rust), var(--amber)); border-radius:2px; transition:width 1.4s ease; }
.dr-val { font-family: var(--font-mono); font-size: 0.72rem; color: var(--amber); min-width: 38px; text-align: right; }
.check-list { list-style: none; margin-top: 1.25rem; }
.check-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.825rem; color: var(--parchment); padding: 0.6rem 0; border-bottom: 1px solid var(--border-lt); font-weight: 300; }
.check-list li:last-child { border-bottom: none; }
.check-list li::before { content: '◆'; color: var(--amber); flex-shrink: 0; font-size: 0.45rem; margin-top: 5px; }

/* ---- BLOG / POST ---- */
.blog-sec { padding: 5rem 0; background: var(--earth-md); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.blog-card { display: block; background: var(--earth-lt); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: var(--trans); }
.blog-card:hover { transform: translateY(-3px); border-color: var(--amber); }
.blog-card-top { background: var(--rust); padding: 2rem; min-height: 120px; display: flex; flex-direction: column; justify-content: flex-end; }
.blog-card-body { padding: 1.5rem; }
.blog-card-body h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 600; color: var(--white); line-height: 1.4; margin-bottom: 0.75rem; }
.blog-card-body p { font-size: 0.8rem; color: var(--parchment-md); line-height: 1.7; margin-bottom: 1rem; font-weight: 300; }
.blog-meta { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 0.68rem; color: var(--parchment-dk); }
.post-hero { background: var(--earth-md); padding: 148px 2rem 80px; position: relative; }
.post-tag-lg { display: inline-block; font-family: var(--font-mono); font-size: 0.62rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); border: 1px solid var(--border); background: var(--amber-pale); padding: 0.28rem 0.85rem; border-radius: 2px; margin-bottom: 1.5rem; }
.post-title { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--white); line-height: 1.15; max-width: 800px; margin-bottom: 1.5rem; }
.post-byline { display: flex; gap: 2rem; font-family: var(--font-mono); font-size: 0.68rem; color: var(--parchment-dk); letter-spacing: 0.06em; text-transform: uppercase; }
.post-body { max-width: 780px; margin: 0 auto; padding: 5rem 2rem; }
.post-body h2 { font-family: var(--font-head); font-size: 1.7rem; font-weight: 700; color: var(--white); margin: 2.75rem 0 1rem; }
.post-body p { font-size: 0.925rem; color: var(--parchment-md); line-height: 1.9; margin-bottom: 1.25rem; font-weight: 300; }
.post-body blockquote { border-left: 2px solid var(--amber); padding: 1rem 1.5rem; margin: 2rem 0; background: var(--earth-lt); font-family: var(--font-head); font-style: italic; font-size: 1.1rem; color: var(--parchment); line-height: 1.6; }
.post-cta-box { background: var(--earth-lt); border: 1px solid var(--border); border-top: 2px solid var(--amber); border-radius: var(--radius); padding: 2.5rem; text-align: center; margin: 3rem 0; }
.post-cta-box h3 { font-family: var(--font-head); color: var(--white); font-size: 1.4rem; font-weight: 700; margin-bottom: 0.75rem; }
.post-cta-box p { color: var(--parchment-md); margin-bottom: 1.5rem; font-size: 0.85rem; font-weight: 300; }

/* ---- OFFER ---- */
.offer-sec { padding: 6rem 0; background: var(--earth); }
.offer-inner { display: grid; grid-template-columns: 1fr 1.15fr; gap: 5rem; align-items: start; }
.offer-info h2 { font-family: var(--font-head); font-size: 2.2rem; font-weight: 900; color: var(--white); margin-bottom: 1rem; line-height: 1.2; }
.offer-info h2 span { color: var(--amber); }
.offer-info p { font-size: 0.875rem; color: var(--parchment-md); line-height: 1.85; margin-bottom: 1rem; font-weight: 300; }
.offer-bullets { list-style: none; margin-top: 1.5rem; }
.offer-bullets li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.825rem; color: var(--parchment); padding: 0.65rem 0; border-bottom: 1px solid var(--border-lt); font-weight: 300; }
.offer-bullets li::before { content: '◆'; color: var(--amber); font-size: 0.45rem; flex-shrink: 0; }
.offer-form-wrap { background: var(--earth-lt); border: 1px solid var(--border); border-top: 2px solid var(--amber); border-radius: var(--radius); padding: 2.5rem; }
.offer-form-wrap h3 { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 0.25rem; }
.form-sub { font-family: var(--font-mono); font-size: 0.72rem; color: var(--parchment-dk); margin-bottom: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-family: var(--font-mono); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--parchment-md); margin-bottom: 0.5rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.875rem 1rem; background: var(--earth); border: 1px solid rgba(232,220,200,0.12); border-radius: var(--radius); font-family: var(--font-mono); font-size: 0.85rem; color: var(--parchment); outline: none; transition: border-color var(--trans); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--amber); }
.form-group select option { background: var(--earth-md); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit { width: 100%; padding: 1rem; background: var(--amber); color: var(--earth); border: none; border-radius: var(--radius); font-family: var(--font-mono); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: var(--trans); margin-top: 0.5rem; }
.form-submit:hover { background: var(--amber-lt); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,118,58,0.3); }
.form-note { font-family: var(--font-mono); font-size: 0.68rem; color: var(--parchment-dk); text-align: center; margin-top: 1rem; line-height: 1.6; }
.success-message { display: none; background: var(--amber-pale); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; text-align: center; color: var(--amber); font-weight: 500; margin-top: 1rem; }
.trust-row { background: var(--earth-lt); padding: 4rem 0; border-top: 1px solid var(--border); }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; text-align: center; }
.trust-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.trust-title { font-family: var(--font-head); font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 0.5rem; }
.trust-desc { font-size: 0.775rem; color: var(--parchment-dk); line-height: 1.6; font-weight: 300; }

/* ---- ANIMATIONS ---- */
.animate-up { opacity:0; transform:translateY(26px); animation:fadeUp 0.65s ease forwards; }
.animate-fade { opacity:0; transform:translateY(16px); transition:opacity 0.55s ease, transform 0.55s ease; }
.animate-fade.visible { opacity:1; transform:translateY(0); }
.delay-1{animation-delay:.1s}.delay-2{animation-delay:.25s}.delay-3{animation-delay:.4s}.delay-4{animation-delay:.55s}.delay-5{animation-delay:.7s}
@keyframes fadeUp { to { opacity:1; transform:translateY(0); } }

/* ---- RESPONSIVE ---- */
@media (max-width:1024px) {
  .ds-grid,.why-block,.why-block.rev,.offer-inner { grid-template-columns:1fr; direction:ltr; gap:2.5rem; }
  .rwa-grid,.buyers-grid,.blog-grid { grid-template-columns:1fr 1fr; }
  .trust-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width:768px) {
  .nav-links { display:none; }
  .hamburger { display:flex; }
  .rwa-grid,.buyers-grid,.blog-grid { grid-template-columns:1fr; }
  .bp-grid { grid-template-columns:1fr; }
  .bp-card.bp-feat { grid-row:auto; min-height:260px; }
  .bp-hdr { flex-direction:column; align-items:flex-start; gap:1rem; }
  .cta-inner { flex-direction:column; text-align:center; }
  .cta-right { align-items:center; width:100%; }
  .footer-inner { flex-direction:column; }
  .hero-data { gap:1.5rem; }
  .hd-sep { display:none; }
  .trust-grid { grid-template-columns:1fr 1fr; }
}
