/*
Theme Name: MurriPay
Theme URI: https://murripay.com
Author: MurriPay Dev Team
Description: Custom WordPress theme for MurriPay — Australia's first Indigenous-owned payment infrastructure.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: murripay
*/

/* ── DESIGN TOKENS ── */
:root {
  --black:      #0A0806;
  --deep:       #111009;
  --charcoal:   #1E1B16;
  --smoke:      #2D2920;
  --earth:      #4A3728;
  --ochre:      #C4622D;
  --ochre-lt:   #E07A3E;
  --gold:       #C9913A;
  --gold-lt:    #E5B45A;
  --sand:       #E8D5B0;
  --cream:      #F5EDDA;
  --warm-white: #FBF7EF;
  --red-earth:  #8B2E0F;
  --leaf:       #2D5A2E;
  --sky-blue:   #1B4E7A;
  --text-muted: rgba(235,220,195,0.55);
  --text-dim:   rgba(235,220,195,0.35);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Sora', sans-serif;
  background: var(--black);
  color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: 0.6; transform: scale(1.05); }
}
@keyframes float1 {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-12px); }
}
@keyframes float2 {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50%     { transform: translateY(-9px) rotate(1deg); }
}

/* Scroll reveal */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── NAV ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px; height: 76px;
  background: rgba(10,8,6,0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,145,58,0.12);
}
.nav-logo-wrap { display: flex; align-items: center; gap: 14px; }
.nav-logo-icon {
  width: 36px; height: 36px; border-radius: 50%; overflow: hidden;
  border: 1.5px solid rgba(201,145,58,0.4);
  background: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-icon img { width: 100%; height: 100%; object-fit: cover; }
.nav-logo-glyph {
  font-family: 'Fraunces', serif;
  font-size: 18px; color: var(--gold-lt); font-style: italic;
}
.nav-logo-label {
  font-family: 'Fraunces', serif;
  font-size: 20px; font-weight: 400;
  color: var(--warm-white); letter-spacing: -0.01em;
}
.nav-logo-label span { color: var(--ochre); }

.nav-links { display: flex; gap: 40px; }
.nav-links a {
  font-size: 12px; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold-lt); }

.nav-actions { display: flex; gap: 12px; align-items: center; }

/* Mobile menu toggle */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 32px; position: relative;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--gold-lt); position: absolute; left: 5px;
  transition: all 0.3s;
}
.nav-toggle span:nth-child(1) { top: 8px; }
.nav-toggle span:nth-child(2) { top: 15px; }
.nav-toggle span:nth-child(3) { top: 22px; }

.nav-btn {
  font-family: 'Sora', sans-serif;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 9px 22px;
  border: 1px solid rgba(201,145,58,0.35);
  background: transparent; color: var(--gold-lt);
  cursor: pointer; transition: all 0.22s;
  display: inline-block;
}
.nav-btn:hover { background: rgba(201,145,58,0.1); border-color: var(--gold-lt); }
.nav-btn.filled { background: var(--ochre); color: var(--warm-white); border-color: var(--ochre); }
.nav-btn.filled:hover { background: var(--ochre-lt); }

/* ── BUTTONS ── */
.btn-primary {
  font-family: 'Sora', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 16px 40px;
  background: var(--ochre); color: var(--warm-white);
  border: none; cursor: pointer; transition: all 0.25s;
  display: inline-block; position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: translateX(-100%); transition: transform 0.5s;
}
.btn-primary:hover::after { transform: translateX(100%); }
.btn-primary:hover { background: var(--ochre-lt); }

.btn-ghost {
  font-family: 'Sora', sans-serif;
  font-size: 12px; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted);
  display: inline-flex; align-items: center; gap: 10px;
  transition: color 0.2s; border-bottom: 1px solid transparent;
  padding-bottom: 2px; background: none; border-top: none;
  border-left: none; border-right: none; cursor: pointer;
}
.btn-ghost:hover { color: var(--gold-lt); border-bottom-color: var(--gold-lt); }

.btn-outline {
  font-family: 'Sora', sans-serif;
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 15px 28px;
  background: transparent; color: var(--gold-lt);
  border: 1px solid rgba(201,145,58,0.3);
  cursor: pointer; transition: all 0.22s; display: inline-block;
}
.btn-outline:hover { background: rgba(201,145,58,0.1); border-color: var(--gold-lt); }

/* ── SECTION COMMONS ── */
.section-tag {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ochre); margin-bottom: 24px;
  display: flex; align-items: center; gap: 14px;
}
.section-tag::before { content: ''; width: 28px; height: 1px; background: var(--ochre); }

.section-heading {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 200; color: var(--warm-white);
  line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-heading em { font-style: italic; color: var(--gold-lt); }

.section-body {
  font-size: 14px; font-weight: 300;
  line-height: 1.85; color: var(--text-muted);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding-top: 76px;
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute;
  top: 20%; right: 10%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,98,45,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 72px 80px 80px;
  position: relative; z-index: 2;
  opacity: 0; transform: translateY(32px);
  animation: fadeUp 1s cubic-bezier(0.22,1,0.36,1) 0.2s forwards;
}

.hero-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ochre); margin-bottom: 28px;
  display: flex; align-items: center; gap: 14px;
}
.hero-eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--ochre); }

.hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(48px, 5.5vw, 82px);
  font-weight: 200; line-height: 1.02;
  color: var(--warm-white); letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.hero-title .line2 { font-style: italic; color: var(--gold-lt); display: block; }
.hero-title .line3 { display: block; color: var(--cream); }

.hero-desc {
  font-size: 15px; font-weight: 300;
  line-height: 1.8; color: var(--text-muted);
  max-width: 420px; margin: 32px 0 48px;
}

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

.hero-trust {
  margin-top: 64px; padding-top: 36px;
  border-top: 1px solid rgba(201,145,58,0.15);
  display: flex; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.6s forwards;
}
.trust-item {
  padding-right: 40px; margin-right: 40px;
  border-right: 1px solid rgba(201,145,58,0.15);
}
.trust-item:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.trust-num {
  font-family: 'Fraunces', serif;
  font-size: 34px; font-weight: 400;
  color: var(--gold-lt); line-height: 1; margin-bottom: 6px;
}
.trust-label {
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-dim);
}

/* Hero right */
.hero-right {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; animation: fadeIn 1.4s ease 0.5s forwards;
}
.hero-right-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 60% 40%, rgba(196,98,45,0.06) 0%, transparent 55%),
    radial-gradient(circle at 30% 70%, rgba(45,90,46,0.04) 0%, transparent 45%);
}
.rings-svg {
  position: absolute; width: 110%; height: 110%;
  top: -5%; left: -5%; opacity: 0.06;
}
.artwork-container {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 32px;
}
.artwork-glow {
  position: relative; width: 340px; height: 340px;
}
.artwork-glow::before {
  content: ''; position: absolute; inset: -40px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,145,58,0.22) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}
.artwork-glow::after {
  content: ''; position: absolute; inset: -60px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,98,45,0.10) 0%, transparent 65%);
  animation: pulse 4s ease-in-out infinite 0.8s;
}
.artwork-img {
  width: 100%; height: 100%;
  object-fit: cover; border-radius: 50%;
  position: relative; z-index: 1;
  border: 1px solid rgba(201,145,58,0.2);
}

/* Floating chips */
.chip {
  position: absolute; z-index: 3;
  background: rgba(20,16,11,0.92);
  border: 1px solid rgba(201,145,58,0.25);
  backdrop-filter: blur(12px); border-radius: 10px;
  padding: 14px 18px;
}
.chip-1 { top: 12%; right: -10%; animation: float1 4s ease-in-out infinite; }
.chip-2 { bottom: 18%; left: -12%; animation: float2 5s ease-in-out infinite; }
.chip-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 4px;
}
.chip-value {
  font-family: 'Fraunces', serif;
  font-size: 20px; font-weight: 400;
  color: var(--gold-lt); line-height: 1;
}
.chip-sub { font-size: 10px; color: var(--ochre); margin-top: 3px; }
.chip-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--leaf); background: rgba(45,90,46,0.15);
  padding: 4px 10px; border-radius: 20px;
  border: 1px solid rgba(45,90,46,0.3); margin-bottom: 8px;
}
.chip-badge::before { content: '●'; font-size: 7px; }
.chip-title { font-size: 13px; font-weight: 500; color: var(--cream); line-height: 1.3; }

/* ── MARQUEE ── */
.marquee-bar {
  background: var(--ochre); padding: 12px 0;
  overflow: hidden; white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 30s linear infinite;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 18px;
  padding: 0 36px;
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.marquee-dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: rgba(255,255,255,0.5);
}

/* ── MISSION / ABOUT ── */
.mission {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 85vh;
}
.mission-left {
  background: var(--charcoal);
  padding: 100px 72px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.mission-left::before {
  content: ''; position: absolute; bottom: -60px; left: -60px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,98,45,0.06) 0%, transparent 70%);
}
.mission-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 200; line-height: 1.12;
  color: var(--warm-white); margin-bottom: 28px;
}
.mission-title em { font-style: italic; color: var(--gold-lt); }
.mission-body {
  font-size: 14px; font-weight: 300;
  line-height: 1.9; color: var(--text-muted);
  max-width: 460px; margin-bottom: 48px;
}
.mission-quote {
  border-left: 2px solid var(--ochre);
  padding: 16px 0 16px 24px; margin-bottom: 48px;
}
.mission-quote p {
  font-family: 'Fraunces', serif;
  font-size: 16px; font-style: italic;
  font-weight: 200; line-height: 1.7; color: var(--sand);
}
.mission-quote cite {
  display: block; margin-top: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ochre); font-style: normal;
}

.pillars { display: flex; flex-direction: column; }
.pillar {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(201,145,58,0.1);
}
.pillar:last-child { border-bottom: none; }
.pillar-icon {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(196,98,45,0.1);
  border: 1px solid rgba(196,98,45,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0; margin-top: 2px;
}
.pillar-title {
  font-size: 13px; font-weight: 500;
  color: var(--cream); margin-bottom: 4px;
}
.pillar-desc {
  font-size: 12px; font-weight: 300;
  color: var(--text-muted); line-height: 1.6;
}

/* Mission right */
.mission-right {
  background: var(--deep);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 80px 60px;
}
.mission-art-wrap { position: relative; text-align: center; }
.mission-art-img {
  width: 280px; height: 280px;
  object-fit: cover; border-radius: 50%;
  opacity: 0.75;
  border: 1px solid rgba(201,145,58,0.15);
  display: block; margin: 0 auto 40px;
}
.ias-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px; width: 320px;
}
.ias-tag {
  background: rgba(30,27,22,0.9);
  border: 1px solid rgba(201,145,58,0.12);
  border-radius: 8px; padding: 12px 14px;
  transition: border-color 0.25s;
}
.ias-tag:hover { border-color: rgba(201,145,58,0.35); }
.ias-num {
  font-family: 'DM Mono', monospace;
  font-size: 9px; color: var(--ochre);
  letter-spacing: 0.12em; margin-bottom: 4px;
}
.ias-title {
  font-size: 11px; font-weight: 500;
  color: var(--cream); line-height: 1.4;
}

/* ── GATEWAY / FEATURES ── */
.gateway {
  padding: 120px 80px;
  background: var(--black);
  position: relative; overflow: hidden;
}
.gateway::before {
  content: ''; position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,145,58,0.2), transparent);
}
.gateway-header {
  text-align: center; max-width: 640px;
  margin: 0 auto 80px;
}
.gateway-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 200; line-height: 1.1;
  color: var(--warm-white); margin-bottom: 20px;
}
.gateway-title em { font-style: italic; color: var(--gold-lt); }
.gateway-desc {
  font-size: 15px; font-weight: 300;
  line-height: 1.8; color: var(--text-muted);
}
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(201,145,58,0.08);
  border: 1px solid rgba(201,145,58,0.08);
}
.feature-card {
  background: var(--black);
  padding: 44px 40px;
  position: relative; overflow: hidden;
  transition: background 0.3s;
}
.feature-card:hover { background: var(--charcoal); }
.feature-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--ochre);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.feature-card:hover::after { transform: scaleX(1); }
.feature-icon { font-size: 28px; margin-bottom: 24px; display: block; }
.feature-num {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 0.14em;
  color: var(--ochre); margin-bottom: 12px;
}
.feature-title {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 300;
  color: var(--warm-white); margin-bottom: 14px; line-height: 1.2;
}
.feature-desc {
  font-size: 13px; font-weight: 300;
  line-height: 1.75; color: var(--text-muted);
}

/* ── PARTNERS STRIP ── */
.partners {
  padding: 56px 80px;
  border-top: 1px solid rgba(201,145,58,0.1);
  border-bottom: 1px solid rgba(201,145,58,0.1);
  display: flex; align-items: center; gap: 48px;
  background: var(--charcoal); flex-wrap: wrap;
}
.partners-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-dim); white-space: nowrap; flex-shrink: 0;
}
.partners-divider { width: 1px; height: 32px; background: rgba(201,145,58,0.15); }
.partner-item {
  font-size: 13px; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted);
  display: flex; align-items: center; gap: 8px;
}
.partner-item .dot { color: var(--ochre); font-size: 8px; }

/* ── CTA SECTION ── */
.cta-section {
  padding: 140px 80px;
  background: var(--deep);
  position: relative; overflow: hidden; text-align: center;
}
.cta-section::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,98,45,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.cta-art {
  width: 120px; height: 120px;
  border-radius: 50%; object-fit: cover;
  margin: 0 auto 40px; opacity: 0.65;
  border: 1px solid rgba(201,145,58,0.2); display: block;
}
.cta-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 200; line-height: 1.05;
  color: var(--warm-white); margin-bottom: 20px;
}
.cta-title em { font-style: italic; color: var(--gold-lt); }
.cta-sub {
  font-size: 15px; font-weight: 300;
  line-height: 1.8; color: var(--text-muted);
  max-width: 520px; margin: 0 auto 48px;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.site-footer {
  background: var(--black);
  padding: 80px 80px 48px;
  border-top: 1px solid rgba(201,145,58,0.1);
}
.footer-top {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 64px;
  border-bottom: 1px solid rgba(201,145,58,0.1);
  margin-bottom: 40px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo-row { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.footer-logo-icon {
  width: 32px; height: 32px; border-radius: 50%;
  overflow: hidden; border: 1px solid rgba(201,145,58,0.3);
}
.footer-logo-icon img { width: 100%; height: 100%; object-fit: cover; }
.footer-logo-text {
  font-family: 'Fraunces', serif;
  font-size: 20px; font-weight: 400; color: var(--warm-white);
}
.footer-logo-text span { color: var(--ochre); }
.footer-tagline {
  font-size: 13px; font-weight: 300;
  line-height: 1.75; color: var(--text-dim); max-width: 280px;
}
.footer-acknowledgement {
  margin-top: 8px; padding: 14px 16px;
  background: rgba(196,98,45,0.06);
  border: 1px solid rgba(196,98,45,0.12); border-radius: 4px;
}
.footer-acknowledgement p {
  font-size: 11px; font-weight: 300;
  line-height: 1.7; color: var(--text-dim); font-style: italic;
}
.footer-col-title {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--sand); margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 13px; font-weight: 300;
  color: var(--text-muted); transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-lt); }
.footer-bottom {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-copy {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.15);
}
.footer-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.badge {
  font-family: 'DM Mono', monospace;
  font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid rgba(201,145,58,0.2);
  color: var(--text-dim); border-radius: 2px;
}

/* ── PAGE BANNER (inner pages) ── */
.page-banner {
  margin-top: 76px;
  background: var(--charcoal);
  border-bottom: 1px solid rgba(201,145,58,0.1);
  position: relative; overflow: hidden;
  padding: 88px 80px 80px;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 60px;
}
.page-banner::before {
  content: ''; position: absolute; top: -100px; right: 180px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,98,45,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.banner-dots {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: radial-gradient(circle, var(--gold) 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none;
}
.banner-tag {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ochre); margin-bottom: 20px;
  display: flex; align-items: center; gap: 14px;
  opacity: 0; animation: fadeUp 0.8s cubic-bezier(0.22,1,0.36,1) 0.1s forwards;
}
.banner-tag::before { content: ''; width: 28px; height: 1px; background: var(--ochre); }
.banner-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 200; line-height: 1.06;
  color: var(--warm-white); letter-spacing: -0.025em;
  margin-bottom: 20px;
  opacity: 0; animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.2s forwards;
}
.banner-title em { font-style: italic; color: var(--gold-lt); }
.banner-desc {
  font-size: 14px; font-weight: 300;
  line-height: 1.85; color: var(--text-muted); max-width: 540px;
  opacity: 0; animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.3s forwards;
}
.banner-ctas {
  display: flex; gap: 16px; margin-top: 40px; align-items: center;
  opacity: 0; animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.4s forwards;
}
.banner-stats {
  display: flex; flex-direction: column; gap: 28px;
  border-left: 1px solid rgba(201,145,58,0.15);
  padding-left: 56px;
  opacity: 0; animation: fadeIn 1s ease 0.5s forwards;
}
.bstat-num {
  font-family: 'Fraunces', serif;
  font-size: 36px; font-weight: 400;
  color: var(--gold-lt); line-height: 1; margin-bottom: 6px;
}
.bstat-label {
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-dim); white-space: nowrap;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .site-nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 76px; left: 0; right: 0;
    background: rgba(10,8,6,0.96);
    padding: 24px; gap: 20px;
    border-bottom: 1px solid rgba(201,145,58,0.12);
  }
  .hero { grid-template-columns: 1fr; }
  .hero-right { min-height: 60vh; }
  .hero-left { padding: 60px 32px; }
  .mission { grid-template-columns: 1fr; }
  .mission-left, .mission-right { padding: 60px 32px; }
  .gateway { padding: 80px 32px; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .site-footer { padding: 60px 32px 40px; }
  .partners { padding: 40px 32px; }
  .cta-section { padding: 100px 32px; }
  .page-banner { grid-template-columns: 1fr; padding: 60px 32px; }
  .banner-stats { border-left: none; padding-left: 0; border-top: 1px solid rgba(201,145,58,0.15); padding-top: 28px; flex-direction: row; gap: 32px; flex-wrap: wrap; }
}

@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .hero-left { padding: 40px 20px; }
  .trust-item { padding-right: 20px; margin-right: 20px; }
}
