/* ═══════════════════════════════════════════════════════════
   Catoka Mining Precious Minerals Portal — Core Stylesheet
   Design Language: Obsidian, Sapphire Blue, & Raw Emerald
   ═══════════════════════════════════════════════════════════ */

:root {
  --bg-obsidian: #08090D;
  --surface: #101219;
  --surface-hover: #161A24;
  --accent: #E76F51;
  --accent-light: #F4A261;
  --emerald: #10B981;
  --emerald-alpha: rgba(16, 185, 129, 0.1);
  --sapphire: #2582FF;
  --border: #1B1E26;
  --border-hover: #262B37;
  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --font-mono: 'Space Mono', 'Courier New', monospace;
  --radius-lg: 12px;
  --radius-md: 8px;
  --radius-sm: 4px;
  --nav-bg: rgba(8, 9, 12, 0.85);
}

/* ─── LIGHT THEME OVERRIDES ─── */
[data-theme="light"] {
  --bg-obsidian: #F8FAFC;
  --surface: #FFFFFF;
  --surface-hover: #F1F5F9;
  --border: #E2E8F0;
  --border-hover: #CBD5E1;
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --emerald: #059669;
  --emerald-alpha: rgba(5, 150, 105, 0.15);
  --sapphire: #1D4ED8;
  --nav-bg: rgba(255, 255, 255, 0.85);
}

/* ─── THEME TOGGLE BUTTON ─── */
.btn-theme-toggle {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 0.6rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  flex-shrink: 0;
}

.btn-theme-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(231, 111, 81, 0.05);
}

/* Toggle icon display states */
[data-theme="light"] .btn-theme-toggle .sun-icon { display: none; }
[data-theme="light"] .btn-theme-toggle .moon-icon { display: block; }
[data-theme="dark"] .btn-theme-toggle .sun-icon { display: block; }
[data-theme="dark"] .btn-theme-toggle .moon-icon { display: none; }
html:not([data-theme="light"]) .btn-theme-toggle .sun-icon { display: block; }
html:not([data-theme="light"]) .btn-theme-toggle .moon-icon { display: none; }

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

body {
  background-color: var(--bg-obsidian);
  color: var(--text-primary);
  font-family: 'Outfit', 'Inter', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-weight: 600;
  letter-spacing: -0.02em;
}

em {
  font-style: italic;
  color: var(--accent);
}

/* ─── NAVIGATION ─── */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  border-bottom: 1px solid var(--border);
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.logo span {
  color: var(--accent);
}

.mining-nav-icon {
  height: 26px;
  width: auto;
  transform-origin: 60% 80%;
  animation: mining-swing 1.5s cubic-bezier(0.25, 0.8, 0.25, 1) infinite;
  display: inline-block;
  margin-right: 4px;
}

@keyframes mining-swing {
  0% {
    transform: rotate(0deg);
  }
  30% {
    transform: rotate(-18deg); /* Backswing */
  }
  45% {
    transform: rotate(8deg);   /* Strike */
  }
  50% {
    transform: rotate(5deg);   /* Bounce */
  }
  75% {
    transform: rotate(0deg);   /* Reset transition */
  }
  100% {
    transform: rotate(0deg);
  }
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

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

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--accent);
}

.btn-nav {
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-nav:hover {
  background: var(--accent);
  color: var(--bg-obsidian);
}

/* ─── HERO SECTION ─── */
.hero {
  padding: 8rem 5% 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(37, 130, 255, 0.04) 0%, transparent 70%);
}

.hero-tag {
  font-family: var(--font-mono);
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

/* ─── GRID LAYOUTS ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 4rem;
}

@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
}

@media (max-width: 900px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* ─── PORTAL CARDS ─── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-sub {
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
}

/* ─── BUTTONS ─── */
.btn-primary {
  width: 100%;
  padding: 1rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: var(--font-mono);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

.btn-secondary {
  width: 100%;
  padding: 1rem;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  border-color: var(--text-primary);
}

/* ─── ORDER FORM CONTROLS ─── */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.form-group input, .form-group select {
  width: 100%;
  padding: 1rem;
  background: rgba(8, 9, 12, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus, .form-group select:focus {
  border-color: var(--accent);
}

/* ─── LIVE PRICE TICKER ─── */
.ticker-wrap {
  width: 100%;
  background: rgba(231, 111, 81, 0.03);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 0.6rem 0;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 140px;
}

.ticker-title {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  font-weight: 700;
  white-space: nowrap;
  z-index: 10;
  box-shadow: 4px 0 10px rgba(0, 0, 0, 0.35);
}

.ticker-track {
  display: flex;
  gap: 3rem;
  animation: ticker 25s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

.ticker-item.up { color: var(--emerald); }
.ticker-item .val { color: var(--text-primary); font-weight: 700; }

@keyframes ticker {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* ─── PAYMENT CHANNELS & CALCS ─── */
.tp-calc-row {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px dashed var(--border);
}

.tp-calc-row:last-child {
  border-bottom: none;
}

.tp-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.tp-val {
  font-weight: 600;
  color: var(--text-primary);
}

.tp-val.gold {
  color: var(--accent);
}

/* ─── MILESTONE GATEWAY TIMELINE ─── */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.timeline-step {
  display: flex;
  gap: 1.5rem;
  position: relative;
}

.timeline-step::after {
  content: '';
  position: absolute;
  left: 11px;
  top: 24px;
  bottom: -24px;
  width: 2px;
  background: var(--border);
  z-index: 1;
}

.timeline-step:last-child::after {
  display: none;
}

.step-node {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--border);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--text-secondary);
}

.timeline-step.completed .step-node {
  background: var(--emerald);
  border-color: var(--emerald);
  color: var(--bg-obsidian);
}

.timeline-step.active .step-node {
  border-color: var(--accent);
  background: var(--accent-light);
  color: #fff;
  box-shadow: 0 0 12px rgba(37, 130, 255, 0.45);
}

.step-details {
  flex: 1;
  padding-bottom: 0.5rem;
}

.step-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.25rem;
}

.step-title {
  font-size: 1rem;
  font-weight: 600;
}

.timeline-step.active .step-title {
  color: var(--accent);
}

.step-status {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  padding: 0.15rem 0.5rem;
  border-radius: 2px;
  text-transform: uppercase;
}

.step-status.pending { background: rgba(37, 130, 255, 0.1); color: var(--accent); }
.step-status.completed { background: rgba(16, 185, 129, 0.1); color: var(--emerald); }
.step-status.locked { background: transparent; color: var(--text-secondary); border: 1px solid var(--border); }

.step-desc {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

/* ─── WHATSAPP SUPPORT FLOAT ─── */
.support-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #25D366;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  z-index: 100;
  transition: transform 0.3s;
}

.support-widget:hover {
  transform: translateY(-2px) scale(1.02);
}

.support-icon {
  width: 18px;
  height: 18px;
}

/* ─── CHECKOUT MODAL ─── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 9, 12, 0.85);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
}

.modal-backdrop.active {
  display: flex;
}

.modal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 480px;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

.modal-close:hover {
  color: var(--text-primary);
}

.modal-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.modal-warning {
  background: rgba(231, 76, 60, 0.08);
  border: 1px solid rgba(231, 76, 60, 0.25);
  color: #F1948A;
  padding: 0.85rem;
  font-size: 0.8rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.address-box {
  display: flex;
  background: var(--bg-obsidian);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.address-box span {
  flex: 1;
  padding: 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.address-copy-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0 1rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}

.address-copy-btn:hover {
  background: var(--accent-light);
}

.qr-container {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: #FFF;
  padding: 1rem;
  border-radius: var(--radius-md);
  align-self: center;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── ACETERNITY BANNER HERO ─── */
.hero-banner {
  height: 85vh;
  min-height: 600px;
  position: relative;
  background: url('../images/namibian_banner.png') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
  overflow: hidden;
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 9, 13, 0.4) 0%, rgba(8, 9, 13, 0.95) 90%, var(--bg-obsidian) 100%);
  z-index: 1;
}

.hero-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-banner h1 {
  font-size: 4rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-banner h1 em {
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-banner p {
  color: var(--text-secondary);
  font-size: 1.2rem;
  max-width: 650px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

/* ─── ACETERNITY SHINY MOVING BORDER BUTTON ─── */
.btn-moving-border {
  position: relative;
  padding: 1rem 2.5rem;
  background: rgba(16, 18, 25, 0.7);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
  cursor: pointer;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.btn-moving-border::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, var(--accent), transparent, var(--accent));
  animation: rotate-border 4s linear infinite;
  z-index: -2;
}

.btn-moving-border::after {
  content: '';
  position: absolute;
  inset: 1px;
  background: var(--surface);
  border-radius: calc(var(--radius-sm) - 1px);
  z-index: -1;
  transition: background 0.3s;
}

.btn-moving-border:hover::after {
  background: var(--surface-hover);
}

@keyframes rotate-border {
  100% { transform: rotate(360deg); }
}

/* ─── ACETERNITY BENTO GRID ─── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.bento-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.bento-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.bento-card.col-span-2 {
  grid-column: span 2;
}

@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-card.col-span-2 {
    grid-column: span 1;
  }
}

.bento-icon {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(231,111,81,0.1);
  border: 1px solid rgba(231,111,81,0.25);
  padding: 0.25rem 0.65rem;
  border-radius: 3px;
  margin-bottom: 1.25rem;
  display: inline-block;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bento-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.bento-desc {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ─── ACETERNITY EVERVAULT CARD HOVER ─── */
.evervault-wrap {
  position: relative;
  overflow: hidden;
}

.evervault-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(800px circle at var(--x, 0px) var(--y, 0px), rgba(231, 111, 81, 0.08), transparent 40%);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
}

.evervault-wrap:hover::before {
  opacity: 1;
}

/* ─── ACETERNITY INFINITE MOVING CARDS ─── */
.infinite-moving-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: radial-gradient(circle at center, rgba(37, 130, 255, 0.02) 0%, transparent 80%);
  padding: 4rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 5rem 0;
}

.infinite-moving-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}

.infinite-card {
  width: 320px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  flex-shrink: 0;
}

.inf-quote {
  font-size: 0.9rem;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.inf-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.inf-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-mono);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.inf-details {
  display: flex;
  flex-direction: column;
}

.inf-name {
  font-size: 0.85rem;
  font-weight: 700;
}

.inf-title {
  font-size: 0.72rem;
  color: var(--text-secondary);
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── FOOTER STYLES ─── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 4rem 5% 2rem;
  margin-top: 6rem;
  color: var(--text-secondary);
  position: relative;
  z-index: 5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-brand h4 {
  color: var(--text-primary);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer-col h5 {
  color: var(--text-primary);
  font-size: 0.88rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.8rem;
}

.footer-watermark a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s;
}

.footer-watermark a:hover {
  color: var(--accent-light);
}

/* ─── TRUST & TRUSTWORTHY BLOCKS ─── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (max-width: 900px) {
  .trust-grid { grid-template-columns: 1fr; }
}

.trust-badge-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.75rem;
  border-radius: var(--radius-md);
  text-align: left;
  transition: all 0.3s;
}

.trust-badge-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.trust-badge-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--accent);
  display: inline-block;
}

.trust-badge-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.trust-badge-subtitle {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* ─── FAQ ACCORDIONS ─── */
.faq-wrap {
  margin-top: 4rem;
  border-top: 1px solid var(--border);
  padding-top: 4rem;
}

.faq-item {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: background 0.3s;
}

.faq-question:hover {
  background: var(--surface-hover);
}

.faq-answer {
  padding: 0 1.25rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
  border-top: 0px solid var(--border);
}

.faq-item.active .faq-answer {
  padding: 1.25rem;
  max-height: 200px;
  border-top: 1px solid var(--border);
}

.faq-icon {
  transition: transform 0.3s;
  color: var(--accent);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* ─── CHECKOUT NETWORK TABS ─── */
.network-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 1.5rem;
}

.net-tab {
  flex: 1;
  padding: 0.65rem 0.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease-in-out;
}

.net-tab:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
}

.net-tab.active {
  background: rgba(231, 111, 81, 0.08);
  border-color: var(--accent);
  color: var(--accent);
  font-weight: 700;
}

/* ─── LIGHT THEME COMPONENT OVERRIDES ─── */
[data-theme="light"] .hero-banner-overlay {
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.15) 0%, rgba(248, 250, 252, 0.85) 90%, var(--bg-obsidian) 100%);
}

[data-theme="light"] .evervault-card {
  background: rgba(255, 255, 255, 0.9);
}

[data-theme="light"] .ticker-wrap {
  background: rgba(231, 111, 81, 0.05);
}

[data-theme="light"] .modal-backdrop {
  background: rgba(15, 23, 42, 0.5); /* Semi-transparent dark slate */
}


