@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg: #0f0d11;
  --bg-card: rgba(255,255,255,0.04);
  --primary: #D4A843;
  --secondary: #5B8FB9;
  --accent: #7B9E6B;
  --gold: #D4A843;
  --light: #F5F0E8;
  --text: #F5F0E8;
  --text-dim: #9a95a8;
  --border: rgba(255,255,255,0.06);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 1px;
  line-height: 1.2;
  font-weight: 600;
}

h1 { font-size: clamp(48px, 10vw, 96px); }
h2 { font-size: clamp(32px, 5vw, 52px); }
h3 { font-size: clamp(22px, 3vw, 32px); }

.light-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

.glow-orb {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.12;
  transition: transform 0.2s ease-out;
}

.glow-orb.gold { background: var(--gold); top: -200px; left: -200px; }
.glow-orb.blue { background: var(--secondary); bottom: -200px; right: -200px; }

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: rgba(15,13,17,0.7);
  backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.nav-link {
  padding: 8px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: all 0.3s ease;
  color: var(--text-dim);
  background: transparent;
  border: none;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}

.nav-link.primary {
  background: linear-gradient(135deg, var(--gold), #e6c064);
  color: #0f0d11;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 28px;
  cursor: pointer;
  padding: 4px 12px;
  transition: color 0.3s ease;
}

.nav-toggle:hover { color: var(--text); }

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 4px;
    padding: 16px 0 8px;
    border-top: 1px solid var(--border);
    margin-top: 8px;
  }
  .nav-links.open { display: flex; }
  .navbar { justify-content: space-between; }
}

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

.section {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  margin: 100px 0;
  position: relative;
  z-index: 1;
}

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

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--text-dim); max-width: 600px; margin: 0 auto; font-size: 17px; }

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 20px 80px;
}

.hero-logo {
  width: clamp(200px, 36vw, 400px);
  margin-bottom: 24px;
  position: relative;
  animation: heroFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 0 60px rgba(212,168,67,0.2));
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, #e6c064 30%, var(--secondary) 60%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 6s ease-in-out infinite;
  background-size: 300% 300%;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-tagline {
  font-size: clamp(18px, 2.5vw, 26px);
  color: var(--text-dim);
  margin-top: 8px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.5px;
  font-family: 'Cormorant Garamond', serif;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 22px);
  color: var(--gold);
  margin-top: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-family: 'Cormorant Garamond', serif;
  opacity: 0.9;
}

.hero-scripture {
  margin-top: 16px;
  font-size: clamp(14px, 1.8vw, 18px);
  color: var(--gold);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  opacity: 0.7;
  max-width: 600px;
  line-height: 1.6;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0;
}

.hero-badge {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
}

.hero-badge.gold { color: var(--gold); border-color: rgba(212,168,67,0.25); }
.hero-badge.blue { color: var(--secondary); border-color: rgba(91,143,185,0.25); }
.hero-badge.green { color: var(--accent); border-color: rgba(123,158,107,0.25); }
.hero-badge.light { color: var(--light); border-color: rgba(245,240,232,0.15); }

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 50px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: #0f0d11;
  background: var(--gold);
  box-shadow: 0 0 30px rgba(212,168,67,0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  line-height: 1;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 0 50px rgba(212,168,67,0.35);
}

.btn:active { transform: translateY(-1px) scale(1.02); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #e6c064);
  box-shadow: 0 0 30px rgba(212,168,67,0.25);
}
.btn-primary:hover { box-shadow: 0 0 50px rgba(212,168,67,0.45); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(255,255,255,0.12);
  box-shadow: none;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(212,168,67,0.15);
  color: var(--gold);
}

.btn-blue {
  background: linear-gradient(135deg, var(--secondary), #7db4d4);
  box-shadow: 0 0 30px rgba(91,143,185,0.25);
}
.btn-blue:hover { box-shadow: 0 0 50px rgba(91,143,185,0.45); }

.btn-sm {
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 40px;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: -60px auto 0;
  max-width: 900px;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.stat-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-number.gold { color: var(--gold); }
.stat-number.blue { color: var(--secondary); }
.stat-number.green { color: var(--accent); }
.stat-number.light { color: var(--light); }

.stat-label {
  font-size: 14px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.4s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,168,67,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.card-glow {
  position: relative;
  overflow: hidden;
}

.card-glow::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(212,168,67,0.06), transparent 60%);
  pointer-events: none;
  transition: opacity 0.3s;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.about-grid .card h3 { margin-bottom: 12px; color: var(--gold); }
.about-grid .card p { color: var(--text-dim); line-height: 1.8; font-size: 17px; }

.about-banner {
  margin-top: 24px;
  padding: 24px 32px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(212,168,67,0.06), rgba(91,143,185,0.06));
  border: 1px solid var(--border);
  text-align: center;
}

.about-banner p {
  color: var(--light);
  font-style: italic;
  max-width: 700px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.7;
  font-family: 'Cormorant Garamond', serif;
}

.tokenomics-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.chart-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.donut-chart {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  position: relative;
  background: conic-gradient(
    var(--gold) 0deg 360deg
  );
  box-shadow: 0 0 60px rgba(212,168,67,0.1);
  animation: chartSpin 0.8s ease-out;
}

@keyframes chartSpin {
  from { transform: rotate(-90deg); opacity: 0; }
  to { transform: rotate(0); opacity: 1; }
}

.donut-hole {
  position: absolute;
  width: 140px;
  height: 140px;
  background: var(--bg);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: inset 0 0 30px rgba(0,0,0,0.3);
}

.donut-hole span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 1px;
  background: linear-gradient(135deg, var(--gold), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.donut-hole small {
  font-size: 13px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.chart-legend {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
  max-width: 300px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-dim);
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.tokenomics-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tokenomics-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-radius: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.tokenomics-row:hover {
  border-color: rgba(255,255,255,0.1);
  transform: translateX(4px);
}

.tokenomics-row .label { color: var(--text-dim); font-size: 15px; font-weight: 500; }
.tokenomics-row .value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
}

.roadmap-timeline {
  position: relative;
  padding-left: 40px;
}

.roadmap-timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--secondary), var(--accent), var(--light));
  opacity: 0.3;
}

.roadmap-item {
  position: relative;
  padding: 24px;
  margin-bottom: 20px;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.4s ease;
}

.roadmap-item:hover {
  border-color: rgba(255,255,255,0.1);
  transform: translateX(8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.roadmap-item::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 28px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--bg);
}

.roadmap-item.completed::before { background: var(--gold); box-shadow: 0 0 20px rgba(212,168,67,0.5); }
.roadmap-item:nth-child(2)::before { border-color: var(--secondary); }
.roadmap-item:nth-child(2).completed::before { background: var(--secondary); box-shadow: 0 0 20px rgba(91,143,185,0.5); }
.roadmap-item:nth-child(3)::before { border-color: var(--accent); }
.roadmap-item:nth-child(4)::before { border-color: var(--light); }

.roadmap-item .phase-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.roadmap-item h3 { font-size: 22px; margin-bottom: 8px; }
.roadmap-item p { color: var(--text-dim); font-size: 15px; line-height: 1.7; }

.roadmap-progress {
  margin-top: 14px;
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}

.roadmap-progress-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.eco-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.eco-card {
  padding: 32px 24px;
  border-radius: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.4s ease;
  text-decoration: none;
  color: var(--text);
  display: block;
}

.eco-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212,168,67,0.25);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.eco-card .icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.eco-card h3 { font-size: 22px; margin-bottom: 6px; }
.eco-card p { color: var(--text-dim); font-size: 15px; }

.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-radius: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.security-badge:hover {
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}

.security-badge .badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.security-badge .badge-icon.gold { background: rgba(212,168,67,0.1); }
.security-badge .badge-icon.blue { background: rgba(91,143,185,0.1); }
.security-badge .badge-icon.green { background: rgba(123,158,107,0.1); }
.security-badge .badge-icon.light { background: rgba(245,240,232,0.06); }

.security-badge .badge-info h4 { font-family: 'Inter', sans-serif; font-size: 15px; letter-spacing: 0; font-weight: 700; }
.security-badge .badge-info p { color: var(--text-dim); font-size: 14px; margin-top: 2px; }

.community-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.contract-wrapper {
  text-align: center;
  padding: 32px;
  border-radius: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.ca-box {
  font-family: 'Courier New', monospace;
  font-size: 15px;
  color: var(--gold);
  background: rgba(0,0,0,0.4);
  padding: 14px 20px;
  border-radius: 12px 12px 0 0;
  word-break: break-all;
  max-width: 100%;
  border: 1px solid var(--border);
  border-bottom: none;
  letter-spacing: 1.5px;
}
.ca-copy-btn {
  display: block;
  width: 100%;
  padding: 12px 20px;
  border: 1px solid rgba(212,168,67,0.15);
  border-radius: 0 0 12px 12px;
  background: rgba(212,168,67,0.06);
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}
.ca-copy-btn:hover:not(:disabled) {
  background: rgba(212,168,67,0.15);
}
.ca-copy-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.ca-copy-btn.copied {
  background: rgba(212,168,67,0.15);
  color: var(--accent);
  border-color: rgba(212,168,67,0.3);
}

.wisdom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.wisdom-card {
  padding: 28px 24px;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.4s ease;
}

.wisdom-card:hover {
  border-color: rgba(212,168,67,0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.wisdom-card .quote-icon { font-size: 32px; margin-bottom: 12px; display: block; }
.wisdom-card p { color: var(--text-dim); font-style: italic; line-height: 1.6; font-size: 18px; font-family: 'Cormorant Garamond', serif; }

.card-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

.card-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 14px;
  transition: all 0.4s ease;
  cursor: pointer;
  border: 2px solid rgba(255,255,255,0.04);
}

.card-gallery img:hover {
  transform: scale(1.06);
  border-color: var(--gold);
  box-shadow: 0 0 40px rgba(212,168,67,0.15);
}

.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 60px 24px 30px;
  margin-top: 100px;
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.footer-brand p {
  color: var(--text-dim);
  font-size: 15px;
  max-width: 280px;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: var(--text-dim);
}

.footer-col a {
  display: block;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 15px;
  padding: 4px 0;
  transition: color 0.2s;
}

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

.footer-bottom {
  max-width: 1100px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-dim);
  font-size: 14px;
}

.footer-socials { display: flex; gap: 12px; }

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text-dim);
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background: rgba(212,168,67,0.1);
  color: var(--gold);
  transform: translateY(-2px);
}

.home-btn {
  position: fixed;
  top: 16px;
  left: 16px;
  padding: 10px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  color: #0f0d11;
  background: var(--gold);
  box-shadow: 0 0 20px rgba(212,168,67,0.25);
  transition: all 0.3s ease;
  z-index: 999;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.home-btn:hover { transform: scale(1.08); box-shadow: 0 0 30px rgba(212,168,67,0.45); }

.neon-gold { color: var(--gold); text-shadow: 0 0 30px rgba(212,168,67,0.3); }
.neon-blue { color: var(--secondary); text-shadow: 0 0 30px rgba(91,143,185,0.3); }
.neon-green { color: var(--accent); text-shadow: 0 0 30px rgba(123,158,107,0.3); }

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.featured-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.featured-item:hover {
  border-color: rgba(212,168,67,0.12);
  transform: translateY(-2px);
}

.featured-icon { font-size: 20px; }

.scripture-block {
  padding: 20px 24px;
  border-left: 3px solid var(--gold);
  background: rgba(212,168,67,0.04);
  border-radius: 0 12px 12px 0;
  margin: 16px 0;
}

.scripture-block p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-dim);
}

.scripture-block .ref {
  display: block;
  margin-top: 6px;
  color: var(--gold);
  font-size: 16px;
  font-style: normal;
  font-family: 'Inter', sans-serif;
}

.gospel-card {
  padding: 32px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(212,168,67,0.06), rgba(123,158,107,0.06));
  border: 1px solid rgba(212,168,67,0.1);
  margin-bottom: 16px;
  transition: all 0.4s ease;
}

.gospel-card:hover {
  border-color: rgba(212,168,67,0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.gospel-card .step-number {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  background: var(--gold);
  color: #0f0d11;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 12px;
}

.gospel-card h3 {
  margin-bottom: 8px;
  color: var(--gold);
}

.gospel-card p {
  color: var(--text-dim);
  line-height: 1.8;
  font-size: 17px;
}

.gospel-card .verse-cite {
  display: block;
  color: var(--secondary);
  font-size: 15px;
  margin-top: 6px;
  font-style: italic;
}

.teaching-card {
  padding: 24px;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.4s ease;
}

.teaching-card:hover {
  border-color: rgba(212,168,67,0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.teaching-card .words {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-style: italic;
  line-height: 1.7;
  color: var(--light);
  margin-bottom: 8px;
}

.teaching-card .ref {
  color: var(--gold);
  font-size: 15px;
}

.verse-of-day {
  text-align: center;
  padding: 32px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(212,168,67,0.08), rgba(91,143,185,0.08));
  border: 1px solid rgba(212,168,67,0.12);
  margin-bottom: 40px;
}

.verse-of-day .verse-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 3vw, 28px);
  font-style: italic;
  line-height: 1.6;
  color: var(--light);
  margin-bottom: 8px;
}

.verse-of-day .verse-ref {
  color: var(--gold);
  font-size: 15px;
  font-weight: 600;
}

.verse-card {
  padding: 20px 24px;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  margin-bottom: 14px;
  transition: all 0.3s ease;
}

.verse-card:hover {
  border-color: rgba(212,168,67,0.15);
  transform: translateX(6px);
}

.verse-card .verse-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.7;
  color: var(--light);
  margin-bottom: 6px;
}

.verse-card .verse-ref {
  color: var(--gold);
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .navbar { gap: 4px; padding: 10px 12px; justify-content: center; }
  .nav-link { font-size: 12px; padding: 6px 12px; }
  .hero { padding: 100px 16px 60px; min-height: auto; }

  .stats-bar { grid-template-columns: repeat(2, 1fr); margin-top: 0; padding: 0 16px; }
  .stat-card { padding: 16px; }

  .about-grid { grid-template-columns: 1fr; }
  .tokenomics-wrapper { grid-template-columns: 1fr; text-align: center; }
  .chart-legend { margin: 0 auto; }

  .roadmap-timeline { padding-left: 28px; }
  .roadmap-item::before { left: -24px; }
  .roadmap-item:hover { transform: translateX(4px); }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .eco-grid { grid-template-columns: repeat(2, 1fr); }
  .security-grid { grid-template-columns: repeat(2, 1fr); }
  .card-gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .eco-grid { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .card-gallery { grid-template-columns: repeat(2, 1fr); }
}
