/* ==========================================================================
   ZICZALZ - Main Stylesheet
   Theme: Luxury Pure Black & Radiant Metallic Gold (Matching Reference Design)
   ========================================================================== */

:root {
  /* Color Palette - Metallic Violet & Obsidian (Matching Crypzai Crowned Logo) */
  --primary-gold: #c084fc;
  --primary-gold-dark: #7c3aed;
  --primary-gold-light: #f3e8ff;
  --gold-gradient: linear-gradient(135deg, #7c3aed 0%, #9333ea 50%, #c026d3 100%);
  --gold-gradient-hover: linear-gradient(135deg, #6d28d9 0%, #7e22ce 50%, #a21caf 100%);
  --gold-glow: rgba(168, 85, 247, 0.4);
  --gold-border: rgba(168, 85, 247, 0.3);

  --primary-blue: #9333ea;
  --primary-blue-glow: #c084fc;
  --primary-blue-dark: #581c87;
  --primary-blue-light: #d8b4fe;
  --blue-gradient: linear-gradient(135deg, #7c3aed 0%, #9333ea 50%, #a855f7 100%);

  --bg-main: #090514;
  --bg-light: #0d081f;
  --bg-warm: #120c24;
  --bg-dark: #05020a;
  --bg-dark-card: #120c24;
  --bg-dark-footer: #06030d;
  
  --text-dark: #f8fafc;
  --text-muted: #cbd5e1;
  --text-light-muted: #94a3b8;
  --text-white: #ffffff;
  --text-gold: #c084fc;

  --success-green: #10b981;
  --danger-red: #ef4444;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.6);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.7);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.85);
  --shadow-gold: 0 8px 24px rgba(124, 58, 237, 0.35);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --container-max: 1240px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-script: 'Caveat', cursive;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: #090514;
  color-scheme: dark;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main) !important;
  color: var(--text-dark) !important;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  transition: all 0.25s ease;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Typography Helpers */
.font-serif {
  font-family: var(--font-serif);
}

.font-script {
  font-family: var(--font-script);
}

.text-gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.925rem;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  transition: all 0.25s ease;
}

.btn-gold,
.btn-primary,
.btn-action,
.btn-cta,
button.btn-gold,
a.btn-gold {
  background: var(--gold-gradient) !important;
  color: #0a0c10 !important;
  font-weight: 800 !important;
  box-shadow: 0 4px 18px rgba(168, 85, 247, 0.4) !important;
  border: none !important;
}

.btn-gold:hover,
.btn-primary:hover,
.btn-action:hover,
.btn-cta:hover,
button.btn-gold:hover,
a.btn-gold:hover {
  background: var(--gold-gradient-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.6) !important;
  color: #000000 !important;
}

.btn-hero-cta {
  padding: 12px 28px !important;
  font-size: 0.95rem !important;
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  background: rgba(13, 19, 31, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transition: all 0.25s ease;
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-gold);
  color: var(--primary-gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid rgba(168, 85, 247, 0.4);
  color: var(--primary-gold-light);
  background: rgba(212, 175, 55, 0.08);
}

.btn-outline:hover {
  border-color: var(--primary-gold);
  color: #ffffff;
  background: rgba(168, 85, 247, 0.2);
}

.btn-dark {
  background: #111827;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-dark:hover {
  background: #1f2937;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 6px 14px;
  font-size: 0.825rem;
}

.btn-trade {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(168, 85, 247, 0.35);
  color: #c084fc;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.btn-trade:hover {
  background: var(--gold-gradient);
  color: #0a0c10;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(168, 85, 247, 0.4);
}

.btn-cta-large {
  padding: 14px 34px !important;
  font-size: 1.05rem !important;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0;
  z-index: 100;
  background: rgba(4, 6, 10, 0.92) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 74px;
  gap: 20px;
}

.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 10px;
}

.brand-logo-img {
  height: 44px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #cbd5e1;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}

.nav-link:hover, .nav-link.active {
  color: #f6d365 !important;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-shrink: 0;
}

.header-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0d121c;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.header-icon-btn:hover {
  color: #fff;
  border-color: var(--primary-gold);
}

.btn-header-login {
  background: #080c14 !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  padding: 7px 18px !important;
  border-radius: 9999px !important;
  box-shadow: none !important;
}

.btn-header-login:hover {
  background: #111827 !important;
  border-color: var(--primary-gold) !important;
  color: var(--primary-gold-light) !important;
}

.btn-header-signup {
  font-size: 0.85rem !important;
  padding: 7px 18px !important;
  border-radius: 9999px !important;
}

.header-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #080c14;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #cbd5e1;
  cursor: pointer;
  transition: all 0.2s ease;
}

.header-lang-btn:hover {
  border-color: var(--primary-gold);
  color: #ffffff;
}

.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.mobile-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #f8fafc;
  transition: all 0.3s ease;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 100px 0 90px;
  background-color: #090514;
  background-image: url('../images/hero-bg.png?v=3.0');
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  min-height: 680px;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 580px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: #c084fc;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-title {
  font-size: 4.5rem;
  line-height: 1.05;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.hero-title-highlight {
  display: inline-block;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 32px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-badges-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #c084fc;
}

.badge-text {
  font-size: 0.72rem;
  font-weight: 600;
  color: #cbd5e1;
  line-height: 1.25;
}

.hero-visual-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 480px;
}

/* Top-Right Script Tag */
.hero-script-tag {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 2rem;
  line-height: 1.05;
  color: #f3e8ff;
  transform: rotate(-6deg);
  z-index: 5;
  text-shadow: 0 0 20px rgba(168, 85, 247, 0.6);
  pointer-events: none;
}

.hero-script-tag span {
  font-size: 2.2rem;
  color: #c084fc;
}

/* 3D Gold Coin & Globe Composition */
.hero-3d-coin-composition {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 440px;
}

.hero-globe-sphere {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.25) 0%, rgba(212, 175, 55, 0.05) 50%, transparent 70%);
  filter: drop-shadow(0 0 50px rgba(212, 175, 55, 0.3));
  pointer-events: none;
}

.globe-lat-lines {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: 
    repeating-radial-gradient(circle, transparent, transparent 25px, rgba(212, 175, 55, 0.15) 25px, rgba(212, 175, 55, 0.15) 26px),
    repeating-linear-gradient(0deg, transparent, transparent 25px, rgba(212, 175, 55, 0.1) 25px, rgba(212, 175, 55, 0.1) 26px);
  mask-image: radial-gradient(circle, #000 60%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle, #000 60%, transparent 80%);
}

.hero-gold-coin-3d {
  position: relative;
  width: 290px;
  height: 290px;
  border-radius: 50%;
  z-index: 3;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 35px rgba(212, 175, 55, 0.45));
  animation: heroCoinHover 6s ease-in-out infinite alternate;
}

@keyframes heroCoinHover {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-10px) rotate(1deg); }
}

.coin-outer-bevel {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff8db 0%, #e6be53 30%, #a87e14 70%, #523b03 100%);
  padding: 14px;
  box-shadow: 
    inset 0 2px 4px rgba(255, 255, 255, 0.8),
    inset 0 -4px 8px rgba(0, 0, 0, 0.6),
    0 4px 15px rgba(0, 0, 0, 0.8);
}

.coin-inner-disc {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #fff2be 0%, #dfb74a 35%, #9b7211 75%, #473202 100%);
  border: 3px solid #fdf2d0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5);
}

.coin-z-svg {
  width: 78%;
  height: 78%;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.6));
}

.coin-pedestal-plaque {
  position: relative;
  margin-top: -24px;
  z-index: 4;
  background: linear-gradient(180deg, #11141c 0%, #06080d 100%);
  border: 1.5px solid #d4af37;
  border-radius: 10px;
  padding: 8px 24px;
  text-align: center;
  box-shadow: 
    0 10px 25px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(212, 175, 55, 0.3);
}

.plaque-brand {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.plaque-tagline {
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #f3e8ff;
  text-transform: uppercase;
}
  line-height: 1.05;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 22px;
  letter-spacing: -0.03em;
}

.hero-title-highlight {
  display: block;
  background: linear-gradient(135deg, #38bdf8 0%, #0099ff 50%, #eab308 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 32px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-badges-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #38bdf8;
}

.badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: #cbd5e1;
  line-height: 1.25;
}

.hero-visual-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  min-height: 480px;
}

.hero-script-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.5rem;
  color: #c084fc;
  text-align: right;
  line-height: 1.25;
  transform: rotate(-4deg);
  text-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
  z-index: 5;
}

.hero-script-tag span {
  font-size: 1.35rem;
  color: #f3e8ff;
}

@keyframes heroCoinFloat {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-8px) rotate(1deg); }
}

.coin-outer-bevel {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #aa7c11 0%, #d4af37 50%, #ffeaa7 100%);
  padding: 5px;
  box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.5), 0 2px 4px rgba(255, 255, 255, 0.4);
}

.coin-inner-disc {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #182234 0%, #0c1017 60%, #05070a 100%);
  border: 2px solid rgba(168, 85, 247, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 6px 16px rgba(0, 0, 0, 0.9);
}

.coin-z-svg {
  width: 125px;
  height: 125px;
  filter: drop-shadow(0 6px 12px rgba(0, 102, 255, 0.5));
}

.coin-pedestal-plaque {
  position: relative;
  z-index: 4;
  margin-top: -20px;
  background: linear-gradient(180deg, #1f2533 0%, #0e121a 100%);
  border: 1.5px solid rgba(168, 85, 247, 0.6);
  border-radius: 8px;
  padding: 8px 24px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8), 0 0 15px rgba(168, 85, 247, 0.25);
}

.plaque-brand {
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: #ffffff;
  text-shadow: 0 0 8px rgba(168, 85, 247, 0.6);
}

.plaque-tagline {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #c084fc;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ==========================================================================
   Live Ticker Bar
   ========================================================================== */
.ticker-section {
  background: #090514;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ticker-bar-card {
  background: #120c24;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  padding: 10px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.ticker-items-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  overflow-x: auto;
  scrollbar-width: none;
}
.ticker-items-row::-webkit-scrollbar { display: none; }

.ticker-pill-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.ticker-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.ticker-data {
  display: flex;
  flex-direction: column;
}

.ticker-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffffff;
}

.ticker-sym {
  font-size: 0.68rem;
  color: #64748b;
  margin-left: 3px;
}

.ticker-price-group {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.ticker-val {
  font-size: 0.85rem;
  font-weight: 800;
  color: #ffffff;
}

.ticker-pct {
  font-size: 0.72rem;
  font-weight: 700;
}

.ticker-pct.up {
  color: var(--success-green);
}

.ticker-view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #c084fc;
  white-space: nowrap;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(168, 85, 247, 0.35);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.ticker-view-all-btn:hover {
  background: var(--gold-gradient);
  color: #0a0c10;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* ==========================================================================
   A New Era of Digital Finance
   ========================================================================== */
.era-section {
  padding: 90px 0;
  background: #06080d;
}

.era-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 50px;
  align-items: center;
}

.era-heading {
  font-size: 3rem;
  line-height: 1.15;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
}

.era-desc {
  font-size: 1.05rem;
  color: #94a3b8;
  line-height: 1.65;
  margin-bottom: 28px;
}

.era-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.era-feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 18px 10px;
  background: #0d131f;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.era-feature-card:hover {
  border-color: rgba(0, 153, 255, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 102, 255, 0.2);
}

.feature-circle-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(0, 153, 255, 0.35);
  background: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #38bdf8;
  transition: all 0.3s ease;
}

.era-feature-card:hover .feature-circle-icon {
  background: var(--blue-gradient);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.4);
}

.feature-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.feature-text {
  font-size: 0.8rem;
  color: #94a3b8;
  line-height: 1.4;
}

/* ==========================================================================
   Trade Anywhere Anytime & Live Market Prices
   ========================================================================== */
.market-app-section {
  padding: 90px 0;
  background: #120c24;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.market-app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Mobile App Card Side */
.app-showcase-card {
  position: relative;
  background-color: #090514;
  background-image: 
    linear-gradient(90deg, rgba(9, 5, 20, 0.15) 0%, rgba(9, 5, 20, 0.45) 40%, rgba(9, 5, 20, 0.92) 80%),
    url('../images/trade-anywhere-banner.jpg?v=2.0');
  background-position: center left;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid rgba(168, 85, 247, 0.25);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7), 0 0 20px rgba(124, 58, 237, 0.15);
  transition: all 0.3s ease;
}

.app-showcase-card:hover {
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.8), 0 0 25px rgba(168, 85, 247, 0.2);
}

.app-showcase-content {
  position: relative;
  z-index: 2;
  max-width: 270px;
}

.app-title {
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 12px;
}

.app-subtitle {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.5;
  margin-bottom: 22px;
}

.store-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.store-badge-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0d131f;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 12px;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
}

.store-badge-btn:hover {
  background: #111827;
  border-color: var(--primary-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(168, 85, 247, 0.25);
}

.store-badge-icon {
  width: 22px;
  height: 22px;
}

.store-badge-texts {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.store-badge-sub {
  font-size: 0.55rem;
  text-transform: uppercase;
  color: #94a3b8;
  letter-spacing: 0.05em;
  line-height: 1;
}

.store-badge-main {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.2;
}

/* Market Prices Table & Live Chart Module */
.market-table-card {
  background: #120c24;
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.market-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  gap: 4px;
}

.market-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.market-sub {
  font-size: 0.9rem;
  color: #94a3b8;
}

.market-table {
  width: 100%;
  border-collapse: collapse;
}

.market-table th {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #64748b;
  padding: 10px 8px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.market-table td {
  padding: 12px 8px;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  vertical-align: middle;
  color: #ffffff;
}

.market-table tr:hover td {
  background-color: rgba(255, 255, 255, 0.03);
}

.asset-cell {
  display: flex;
  align-items: center;
  gap: 10px;
}

.table-coin-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.asset-logo-sm {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  min-height: 28px !important;
  max-width: 28px !important;
  max-height: 28px !important;
  flex-shrink: 0 !important;
  display: inline-block;
  vertical-align: middle;
}

.asset-name-main {
  font-weight: 700;
  color: #ffffff;
}

.asset-sym-badge {
  font-size: 0.68rem;
  color: #94a3b8;
  margin-left: 4px;
}

.table-sparkline {
  width: 70px;
  height: 24px;
}

.btn-trade {
  display: inline-block;
  padding: 5px 16px;
  background: var(--gold-gradient);
  color: #ffffff !important;
  border-radius: var(--radius-full);
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(124, 58, 237, 0.35);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
}

.btn-trade:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(168, 85, 247, 0.35);
  color: #000;
}

.view-all-markets-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #c084fc;
  margin-top: 18px;
}

.view-all-markets-link:hover {
  color: #ffffff;
}

/* ==========================================================================
   Stats Counter Banner
   ========================================================================== */
.stats-banner {
  background: #06090e;
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 1.4fr;
  align-items: center;
  gap: 24px;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: #c084fc;
  line-height: 1;
  margin-bottom: 6px;
  font-family: var(--font-sans);
  text-shadow: 0 0 20px rgba(168, 85, 247, 0.25);
}

.stat-label {
  font-size: 0.825rem;
  font-weight: 600;
  color: #94a3b8;
}

.stats-script-box {
  text-align: right;
}

.stats-script-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.6rem;
  line-height: 1.2;
  color: #c084fc;
  transform: rotate(-3deg);
  display: inline-block;
  text-shadow: 0 0 16px rgba(168, 85, 247, 0.35);
}

/* ==========================================================================
   Your Security Our Priority
   ========================================================================== */
.security-section {
  padding: 90px 0;
  background: #090514;
}

.security-grid {
  display: grid;
  grid-template-columns: 0.95fr 0.55fr 1.5fr;
  align-items: center;
  gap: 36px;
}

.security-heading {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 16px;
}

.security-desc {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 24px;
}

.security-shield-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.shield-3d-gold-emblem {
  width: 120px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.shield-gold-rim {
  width: 110px;
  height: 130px;
  background: linear-gradient(135deg, #f3e8ff 0%, #c084fc 40%, #9333ea 80%, #581c87 100%);
  clip-path: polygon(50% 0%, 100% 20%, 100% 75%, 50% 100%, 0% 75%, 0% 20%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 25px rgba(168, 85, 247, 0.35);
}

.shield-gold-inner {
  width: 92px;
  height: 110px;
  background: radial-gradient(circle at 50% 40%, #1e0836 0%, #120c24 70%, #090514 100%);
  clip-path: polygon(50% 0%, 100% 20%, 100% 75%, 50% 100%, 0% 75%, 0% 20%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(212, 175, 55, 0.5);
}

.shield-padlock-svg {
  width: 42px;
  height: 42px;
  stroke: #d4af37;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.5));
}

.security-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.security-pillar-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 8px;
  background: #120c24;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.security-pillar-card:hover {
  border-color: rgba(168, 85, 247, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.pillar-circle-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(168, 85, 247, 0.35);
  background: #0d121c;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: #c084fc;
  transition: all 0.3s ease;
}

.security-pillar-card:hover .pillar-circle-icon {
  background: var(--gold-gradient);
  color: #0a0c10;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(168, 85, 247, 0.35);
}

.pillar-name {
  font-size: 0.825rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

/* ==========================================================================
   How Ziczalz Works
   ========================================================================== */
.how-it-works-section {
  padding: 90px 0;
  background: #06090e;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.how-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.how-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 8px;
}

.how-sub {
  font-size: 0.95rem;
  color: #94a3b8;
}

.steps-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  gap: 24px;
}

.steps-timeline::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 35px;
  right: 35px;
  height: 2px;
  background: linear-gradient(90deg, rgba(168, 85, 247, 0.2) 0%, rgba(168, 85, 247, 0.6) 50%, rgba(168, 85, 247, 0.2) 100%);
  z-index: 1;
}

.step-card {
  position: relative;
  z-index: 2;
  text-align: left;
  background: #120c24;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: all 0.3s ease;
}

.step-card:hover {
  border-color: rgba(168, 85, 247, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
}

.step-number-bubble {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #0a0c10;
  font-size: 0.95rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 4px 10px rgba(168, 85, 247, 0.35);
}

.step-heading {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.step-text {
  font-size: 0.825rem;
  color: #94a3b8;
  line-height: 1.5;
}

/* ==========================================================================
   Global Opportunities For a Brighter World
   ========================================================================== */
.global-opp-section {
  padding: 90px 0;
  background: #090514;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.global-opp-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: center;
  gap: 36px;
}

.global-skyline-card {
  height: 260px;
  background: radial-gradient(circle at 50% 100%, #161e30 0%, #0a0e17 60%, #05070c 100%);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.skyline-buildings-art {
  display: flex;
  align-items: flex-end;
  gap: 6px;
}

.bldg {
  background: linear-gradient(180deg, rgba(168, 85, 247, 0.4) 0%, rgba(212, 175, 55, 0.1) 60%, transparent 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-bottom: none;
}

.b1 { width: 22px; height: 120px; }
.b2 { width: 28px; height: 160px; }
.b3 { width: 34px; height: 190px; }
.b4 { width: 30px; height: 150px; }
.b5 { width: 26px; height: 170px; }
.b6 { width: 20px; height: 110px; }

.global-opp-center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 32px;
  background: radial-gradient(circle at 50% 0%, rgba(124, 58, 237, 0.12) 0%, rgba(18, 12, 36, 0.5) 100%);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(124, 58, 237, 0.08);
}

.global-opp-title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 16px;
}

.global-opp-desc {
  font-size: 1.05rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 28px;
}

.global-globe-card {
  height: 260px;
  background: radial-gradient(circle at 50% 50%, #161e30 0%, #0a0e17 60%, #05070c 100%);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.global-script-tag {
  position: absolute;
  top: 18px;
  right: 16px;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.3rem;
  color: #c084fc;
  line-height: 1.2;
  text-align: right;
  transform: rotate(-5deg);
  text-shadow: 0 0 12px rgba(168, 85, 247, 0.4);
  z-index: 3;
}

.golden-wireframe-globe {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: 1.5px solid rgba(212, 175, 55, 0.5);
  position: relative;
  box-shadow: 0 0 35px rgba(168, 85, 247, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wireframe-rings {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: repeating-linear-gradient(0deg, transparent, transparent 16px, rgba(168, 85, 247, 0.2) 16px, rgba(168, 85, 247, 0.2) 17px),
              repeating-linear-gradient(90deg, transparent, transparent 16px, rgba(168, 85, 247, 0.2) 16px, rgba(168, 85, 247, 0.2) 17px);
}

/* ==========================================================================
   Learn. Grow. Prosper.
   ========================================================================== */
.learn-section {
  padding: 90px 0;
  background: #06090e;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.learn-grid {
  display: grid;
  grid-template-columns: 0.8fr 2.2fr;
  gap: 40px;
  align-items: center;
}

.learn-heading {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 10px;
}

.learn-sub {
  font-size: 0.95rem;
  color: #94a3b8;
  margin-bottom: 24px;
}

.learn-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.learn-card {
  background: #120c24;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.learn-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
  border-color: rgba(168, 85, 247, 0.4);
}

.learn-card-thumb {
  height: 140px;
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #080c14;
}

.learn-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.learn-card:hover .learn-card-img {
  transform: scale(1.05);
}

.learn-card-body {
  padding: 18px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.learn-card-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
}

.learn-card-arrow {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c084fc;
  flex-shrink: 0;
  font-size: 0.85rem;
  transition: transform 0.2s ease;
}

.learn-card:hover .learn-card-arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   Call to Action (CTA) Banner
   ========================================================================== */
.cta-banner-section {
  position: relative;
  background: #090514;
  color: #ffffff;
  padding: 75px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-banner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.cta-heading {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 12px;
}

.cta-subtext {
  font-size: 1rem;
  color: #94a3b8;
}

.btn-cta-large {
  font-size: 1.05rem;
  font-weight: 800;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(168, 85, 247, 0.35);
  white-space: nowrap;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #020408;
  background: radial-gradient(circle at 50% 0%, #080e1a 0%, #030509 70%, #010204 100%);
  color: #94a3b8;
  padding: 65px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: radial-gradient(circle, rgba(223, 183, 74, 0.4) 0%, rgba(223, 183, 74, 0) 80%);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.6fr;
  gap: 36px;
  margin-bottom: 45px;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
}

.footer-brand-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

.footer-brand-desc {
  font-size: 0.825rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-trust-tags {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.trust-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: #dfb74a;
  background: rgba(223, 183, 74, 0.08);
  border: 1px solid rgba(223, 183, 74, 0.2);
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.footer-social-row, .footer-social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social-btn, .social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #090e17;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 0.9rem;
}

.footer-social-btn:hover, .social-btn:hover {
  background: var(--gold-gradient);
  border-color: #dfb74a;
  color: #04060a;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(223, 183, 74, 0.3);
}

.footer-col-heading, .footer-col-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.footer-links, .footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 0;
  margin: 0;
}

.footer-links a, .footer-links-list a {
  font-size: 0.825rem;
  color: #8b9bb4;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover, .footer-links-list a:hover {
  color: #f3d078;
  transform: translateX(3px);
}

.footer-news-text, .newsletter-subtext {
  font-size: 0.825rem;
  color: #94a3b8;
  margin-bottom: 14px;
  line-height: 1.5;
}

.footer-news-form, .newsletter-form {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 16px;
}

.footer-news-input, .newsletter-input {
  width: 100%;
  padding: 12px 48px 12px 14px;
  background: #090e17;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: #ffffff;
  font-size: 0.825rem;
  outline: none;
  transition: all 0.2s;
}

.footer-news-input:focus, .newsletter-input:focus {
  background: #0d1524;
  border-color: #dfb74a;
  box-shadow: 0 0 0 3px rgba(223, 183, 74, 0.15);
}

.footer-news-btn, .newsletter-btn {
  position: absolute;
  right: 5px;
  top: 5px;
  bottom: 5px;
  width: 36px;
  background: var(--gold-gradient);
  border: none;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #05080f;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.footer-news-btn:hover, .newsletter-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(223, 183, 74, 0.35);
}

.footer-payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-payment-badges span {
  font-size: 0.72rem;
  color: #718096;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 4px 9px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Footer Bottom Bar */
.footer-bottom-bar, .footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.footer-bottom-left p {
  font-size: 0.8rem;
  color: #64748b;
  margin: 0;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-system-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  color: #10b981;
  font-weight: 600;
}

.status-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  display: inline-block;
  animation: pulseStatus 2s infinite ease-in-out;
}

@keyframes pulseStatus {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.8; }
}

.footer-lang-selector, .footer-country-select {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
  font-size: 0.775rem;
  background: rgba(255, 255, 255, 0.04);
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-disclaimer-row, .footer-disclaimer {
  padding-top: 6px;
}

.footer-risk-text {
  font-size: 0.72rem;
  color: #4b5568;
  line-height: 1.5;
  margin: 0;
}

.footer-risk-text strong {
  color: #64748b;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-section {
    padding: 60px 0 40px;
    min-height: auto;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-content {
    margin: 0 auto;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-badges-row {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
  }
  .era-grid, .market-app-grid, .global-opp-grid, .learn-grid {
    grid-template-columns: 1fr;
  }
  .era-features-grid, .security-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
  }
  .stats-script-box {
    text-align: center;
    grid-column: span 2;
  }
  .security-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .security-content {
    margin: 0 auto;
  }
  .steps-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-timeline::before {
    display: none;
  }
  .cta-banner-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-top-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1100px) and (min-width: 769px) {
  .nav-menu {
    gap: 16px;
  }
  .nav-link {
    font-size: 0.82rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 62px;
    padding: 0 16px;
  }
  .brand-logo-img {
    height: 34px;
    max-width: 150px;
  }
  .nav-menu {
    display: none !important;
  }
  .mobile-nav-toggle {
    display: none !important;
  }
  .hero-title {
    font-size: 2.6rem;
  }
  .hero-badges-row {
    grid-template-columns: 1fr;
  }
  .app-showcase-container {
    flex-direction: column;
    text-align: center;
  }
  .store-badges {
    align-items: center;
  }
  .learn-cards-row {
    grid-template-columns: 1fr;
  }
  .steps-timeline {
    grid-template-columns: 1fr;
  }
  .security-pillars-grid {
    grid-template-columns: 1fr;
  }
  .era-features-grid {
    grid-template-columns: 1fr;
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom-row {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .footer-disclaimer {
    text-align: left;
  }
}

/* ==========================================================================
   Subpages Common Styles (Page Hero, Breadcrumbs, Badges, Tabs)
   ========================================================================== */
.page-hero {
  padding: 55px 0 45px;
  background: linear-gradient(135deg, #12072b 0%, #1e0836 45%, #3b0764 100%);
  border-bottom: 1.5px solid rgba(168, 85, 247, 0.35);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.page-hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.18) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.page-hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
}

.page-hero-sub {
  font-size: 1.05rem;
  color: #cbd5e1;
  max-width: 680px;
  margin: 0 auto 18px;
  position: relative;
  z-index: 2;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.page-breadcrumb a {
  color: #c084fc;
  font-weight: 600;
}

.page-breadcrumb a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Tab Navigation */
.filter-tabs {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.tab-btn {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: #cbd5e1;
  background: #180f30;
  border: 1px solid rgba(168, 85, 247, 0.25);
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}

.tab-btn:hover {
  border-color: #a855f7;
  color: #ffffff;
  background: #241647;
}

.tab-btn.active {
  background: linear-gradient(135deg, #7c3aed 0%, #9333ea 50%, #c026d3 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.45);
}

/* ==========================================================================
   Markets Page Styles
   ========================================================================== */
.market-highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 36px 0;
}

@media (max-width: 991px) {
  .market-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .market-highlights-grid {
    grid-template-columns: 1fr;
  }
}

.market-highlight-card {
  background: #120c24;
  border: 1.5px solid rgba(168, 85, 247, 0.28);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.market-highlight-card:hover {
  transform: translateY(-3px);
  border-color: #a855f7;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6), 0 0 16px rgba(124, 58, 237, 0.25);
}

.highlight-label {
  font-size: 0.75rem;
  color: #a855f7;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.highlight-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.highlight-change {
  font-size: 0.78rem;
  font-weight: 600;
}

.markets-table-wrapper {
  background: #120c24;
  border: 1.5px solid rgba(168, 85, 247, 0.28);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  margin-bottom: 80px;
}

.markets-controls-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 20px;
  flex-wrap: wrap;
}

.search-input-box {
  position: relative;
  min-width: 260px;
}

.search-input-box input {
  width: 100%;
  padding: 9px 14px 9px 38px;
  background: #090514;
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  color: #ffffff;
  outline: none;
  transition: all 0.2s ease;
}

.search-input-box input:focus {
  border-color: #a855f7;
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.25);
  background: #140b2b;
}

.search-icon-inside {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #a855f7;
  pointer-events: none;
}

.asset-sym-badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: #c084fc;
  background: rgba(168, 85, 247, 0.18);
  border: 1px solid rgba(168, 85, 247, 0.35);
  padding: 1px 6px;
  border-radius: 4px;
  margin-left: 6px;
}

/* ==========================================================================
   Buy Crypto Page Styles
   ========================================================================== */
.buy-crypto-container {
  padding: 50px 0 80px;
}

.buy-widget-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.crypto-converter-card {
  background: #120c24;
  border: 1.5px solid rgba(168, 85, 247, 0.3);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(124, 58, 237, 0.15);
}

.converter-tabs {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(168, 85, 247, 0.2);
  padding-bottom: 12px;
}

.conv-tab-btn {
  font-size: 1.05rem;
  font-weight: 700;
  color: #94a3b8;
  padding-bottom: 8px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.conv-tab-btn:hover {
  color: #e9d5ff;
}

.conv-tab-btn.active {
  color: #ffffff;
}

.conv-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -13px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #7c3aed, #c084fc);
  border-radius: 2px;
  box-shadow: 0 0 8px #a855f7;
}

.input-crypto-group {
  background: #090514;
  border: 1.5px solid rgba(168, 85, 247, 0.28);
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
}

.input-crypto-group:focus-within {
  border-color: #a855f7;
  background: #140b2b;
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.2);
}

.input-label-small {
  font-size: 0.72rem;
  color: #a855f7;
  margin-bottom: 4px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.input-crypto-amt {
  font-size: 1.45rem;
  font-weight: 800;
  border: none;
  background: transparent;
  outline: none;
  color: #ffffff;
  width: 160px;
}

.currency-select-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: #180f30;
  border: 1px solid rgba(168, 85, 247, 0.35);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.88rem;
  color: #ffffff;
}

.quick-amt-btn {
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  background: #180f30;
  border: 1px solid rgba(168, 85, 247, 0.25);
  color: #cbd5e1;
  cursor: pointer;
  transition: all 0.2s ease;
}

.quick-amt-btn:hover {
  background: #241647;
  border-color: #a855f7;
  color: #ffffff;
}

.quick-amt-btn.active {
  background: rgba(168, 85, 247, 0.25);
  border-color: #c084fc;
  color: #ffffff;
}

.payment-methods-box {
  margin: 18px 0 24px;
}

.payment-method-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

@media (max-width: 600px) {
  .payment-method-row {
    grid-template-columns: 1fr;
  }
}

.pay-card-option {
  padding: 12px;
  background: #090514;
  border: 1px solid rgba(168, 85, 247, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pay-card-option:hover {
  border-color: rgba(168, 85, 247, 0.5);
  background: #140b2b;
}

.pay-card-option.selected {
  border-color: #a855f7;
  background: rgba(124, 58, 237, 0.18);
  box-shadow: 0 0 12px rgba(124, 58, 237, 0.25);
}

.buy-feature-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.buy-feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.buy-feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.35);
  color: #c084fc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.2);
}

/* ==========================================================================
   Trade Page (Terminal Layout - High-Tech Obsidian Pro Trading Theme)
   ========================================================================== */
.trade-terminal-wrapper {
  background: #04060a radial-gradient(circle at 50% 0%, #0c1424 0%, #060911 50%, #030408 100%);
  color: #cbd5e1;
  padding: 24px 0 60px;
  min-height: calc(100vh - 160px);
}

.trade-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #090e17;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px 24px;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.trade-pair-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
}

.trade-header-stats {
  display: flex;
  gap: 32px;
}

.trade-stat-col {
  display: flex;
  flex-direction: column;
}

.trade-stat-lbl {
  font-size: 0.68rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.trade-stat-val {
  font-size: 0.925rem;
  font-weight: 700;
  color: #f1f5f9;
}

.trade-terminal-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr;
  gap: 20px;
}

@media (max-width: 1024px) {
  .trade-terminal-grid {
    grid-template-columns: 1fr;
  }
}

.terminal-box {
  background: #090e17;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.terminal-box-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 12px;
}

.chart-container-sim {
  height: 380px;
  width: 100%;
  position: relative;
  background: #05080f;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  overflow: hidden;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.orderbook-table {
  width: 100%;
  font-size: 0.8rem;
  border-collapse: collapse;
}

.orderbook-table th {
  font-weight: 600;
  padding-bottom: 8px;
  color: #64748b;
}

.orderbook-table td {
  padding: 6px 2px;
  font-variant-numeric: tabular-nums;
  color: #cbd5e1;
}

.orderbook-table .ask-price { color: #ef4444; font-weight: 700; }
.orderbook-table .bid-price { color: #10b981; font-weight: 700; }

.order-form-group {
  margin-bottom: 16px;
}

.order-form-input {
  width: 100%;
  background: #060a12;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 10px 14px;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.order-form-input:focus {
  background: #0d1524;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(223, 183, 74, 0.2);
}

.percent-chips {
  display: flex;
  gap: 8px;
  margin: 12px 0 18px;
}

.chip-btn {
  flex: 1;
  padding: 6px 4px;
  background: #0d1524;
  color: #94a3b8;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.2s ease;
}

.chip-btn:hover,
.chip-btn.active {
  background: var(--gold-gradient);
  color: #04060a;
  border-color: #dfb74a;
  box-shadow: 0 2px 8px rgba(223, 183, 74, 0.25);
}

/* ==========================================================================
   Earn / Staking Page
   ========================================================================== */
.earn-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0 60px;
}

.earn-product-card {
  background: #ffffff;
  border: 1px solid #f0ede5;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.earn-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(197, 155, 39, 0.4);
}

.earn-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.earn-asset-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}

.earn-apy-val {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--success-green);
  line-height: 1;
  margin: 14px 0 4px;
}

.staking-calculator-section {
  background: linear-gradient(135deg, #fdfbf7 0%, #f6f0e4 100%);
  border: 1px solid #f0ede5;
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 80px;
}

/* ==========================================================================
   Learn Page / Academy
   ========================================================================== */
.academy-featured-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  margin: 40px 0 60px;
}

@media (max-width: 991px) {
  .academy-featured-grid {
    grid-template-columns: 1fr;
  }
}

.featured-article-card {
  background: #120c24;
  border: 1.5px solid rgba(168, 85, 247, 0.3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.featured-article-card:hover {
  transform: translateY(-3px);
  border-color: #a855f7;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.7), 0 0 20px rgba(124, 58, 237, 0.2);
}

.article-thumb-lg {
  height: 240px;
  background: #090514;
}

.article-card-body-lg {
  padding: 28px;
}

.article-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(168, 85, 247, 0.18);
  color: #c084fc;
  font-size: 0.725rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
  border: 1px solid rgba(168, 85, 247, 0.35);
  letter-spacing: 0.04em;
}

.academy-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

@media (max-width: 991px) {
  .academy-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .academy-list-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Security Page
   ========================================================================== */
.security-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0 60px;
}

@media (max-width: 991px) {
  .security-metrics-grid {
    grid-template-columns: 1fr;
  }
}

.security-metric-card {
  background: #120c24;
  border: 1.5px solid rgba(168, 85, 247, 0.3);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.security-metric-card:hover {
  transform: translateY(-4px);
  border-color: #a855f7;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(124, 58, 237, 0.25);
}

.security-metric-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(168, 85, 247, 0.15);
  border: 1.5px solid rgba(168, 85, 247, 0.35);
  color: #c084fc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 18px;
  box-shadow: 0 0 14px rgba(168, 85, 247, 0.2);
}

.security-faq-section {
  padding: 40px 0 80px;
}

.faq-card {
  background: #120c24;
  border: 1.5px solid rgba(168, 85, 247, 0.25);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: border-color 0.2s ease;
}

.faq-card:hover {
  border-color: #a855f7;
}

.faq-q {
  font-weight: 700;
  font-size: 1.08rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.faq-a {
  font-size: 0.92rem;
  color: #cbd5e1;
  line-height: 1.6;
}

/* ==========================================================================
   About Page Styles
   ========================================================================== */
.about-story-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  margin: 50px 0 70px;
}

.pillar-category-tag {
  display: inline-block;
  font-size: 0.725rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--primary-gold-dark);
  background: #fcf8ee;
  border: 1px solid rgba(197, 155, 39, 0.35);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.vision-feature-card {
  background: radial-gradient(circle at top right, #1e1910 0%, #0c0e14 70%, #06070a 100%);
  border: 1px solid rgba(223, 183, 74, 0.35);
  border-radius: var(--radius-lg);
  padding: 38px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.vision-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #0d0f14;
  background: #dfb74a;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.vision-quote {
  font-size: 1.45rem;
  line-height: 1.45;
  color: #ffffff;
  margin-bottom: 28px;
  font-style: italic;
}

.vision-card-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
}

.vision-bullet-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #dfb74a;
  box-shadow: 0 0 8px #dfb74a;
}

/* 7 Mission Pillars Grid */
.mission-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mission-pillar-card {
  background: #ffffff;
  border: 1px solid #f0ede5;
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.mission-pillar-card:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 155, 39, 0.4);
  box-shadow: 0 12px 28px rgba(197, 155, 39, 0.1);
}

.mission-pillar-highlight {
  grid-column: span 3;
  background: linear-gradient(135deg, #fdfbf7 0%, #fbf6ec 100%);
  border: 1px solid rgba(197, 155, 39, 0.35);
  display: flex;
  align-items: center;
  gap: 20px;
}

.mission-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #fdfaf3;
  border: 1px solid rgba(197, 155, 39, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.mission-pillar-highlight .mission-icon-box {
  margin-bottom: 0;
}

.mission-pillar-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.mission-pillar-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Built for Web3 Era Feature Banner */
.web3-era-banner {
  background: radial-gradient(circle at 75% 25%, #1c1810 0%, #0d0f14 65%, #07080a 100%);
  border-radius: var(--radius-lg);
  padding: 50px 44px;
  color: #ffffff;
  border: 1px solid rgba(223, 183, 74, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  margin: 60px 0;
}

.web3-era-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 48px;
  align-items: center;
}

.web3-tag {
  font-size: 0.725rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #dfb74a;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-block;
}

.web3-heading {
  font-size: 2.3rem;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 16px;
}

.web3-body {
  font-size: 0.925rem;
  color: #cbd5e1;
  line-height: 1.65;
}

.web3-quote-box {
  margin-top: 24px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid #dfb74a;
  border-radius: 0 8px 8px 0;
}

.web3-interactive-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.web3-stat-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 18px 20px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.web3-stat-item:hover {
  transform: translateX(4px);
  border-color: rgba(223, 183, 74, 0.4);
}

.web3-stat-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: #dfb74a;
  font-family: var(--font-serif);
  line-height: 1;
  margin-bottom: 4px;
}

.web3-stat-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.web3-stat-desc {
  font-size: 0.775rem;
  color: #94a3b8;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .about-story-grid,
  .web3-era-grid {
    grid-template-columns: 1fr;
  }
  .mission-pillars-grid {
    grid-template-columns: 1fr;
  }
  .mission-pillar-highlight {
    grid-column: span 1;
    flex-direction: column;
    align-items: flex-start;
  }
}

.timeline-milestones {
  position: relative;
  padding: 20px 0;
  margin: 40px 0 80px;
}

.milestone-item {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}

.milestone-year {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-gold-dark);
  min-width: 80px;
}

.milestone-info h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.milestone-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0 80px;
}

.value-card {
  background: #ffffff;
  border: 1px solid #f0ede5;
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   Authentication Pages (Login & Sign Up)
   ========================================================================== */
.auth-page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #04060a radial-gradient(circle at 50% 10%, #0d1527 0%, #060911 60%, #030407 100%);
  color: #cbd5e1;
}

.auth-header {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 6, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.auth-header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.auth-main-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.auth-card-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  max-width: 980px;
  width: 100%;
  background: #090e17;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  overflow: hidden;
}

.auth-card-single {
  max-width: 460px;
  width: 100%;
  background: #090e17;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 38px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
}

.auth-form-side {
  padding: 40px;
  background: #090e17;
}

.auth-info-side {
  background: radial-gradient(circle at 70% 30%, #1e1b15 0%, #0d0f14 70%, #07080a 100%);
  color: #ffffff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.auth-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.auth-subtitle {
  font-size: 0.925rem;
  color: #94a3b8;
  margin-bottom: 24px;
}

.auth-phishing-warning {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(223, 183, 74, 0.08);
  border: 1px solid rgba(223, 183, 74, 0.25);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.775rem;
  color: #e5b842;
  margin-bottom: 22px;
}

.auth-form-group {
  margin-bottom: 16px;
}

.auth-label {
  display: block;
  font-size: 0.825rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 6px;
}

.auth-input-wrapper {
  position: relative;
}

.auth-input {
  width: 100%;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  font-size: 0.925rem;
  color: #ffffff;
  outline: none;
  background: #0d1524;
  transition: all 0.2s;
}

.auth-input:focus {
  background: #111a2e;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(223, 183, 74, 0.2);
}

.password-toggle-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  padding: 4px;
  cursor: pointer;
}

.auth-extra-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.825rem;
  margin-bottom: 22px;
}

.auth-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
  cursor: pointer;
}

.auth-link {
  color: var(--primary-gold);
  font-weight: 600;
}

.auth-link:hover {
  color: #f3d078;
  text-decoration: underline;
}

.auth-divider {
  display: flex;
  align-items: center;
  margin: 22px 0;
  color: #64748b;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.auth-divider::before, .auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.auth-divider span {
  padding: 0 12px;
}

.social-auth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 22px;
}

.social-auth-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #f1f5f9;
  background: #0d1524;
  transition: all 0.2s;
}

.social-auth-btn:hover {
  background: #152035;
  border-color: rgba(223, 183, 74, 0.4);
  color: #ffffff;
}

.password-strength-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  margin-top: 6px;
  overflow: hidden;
}

.password-strength-fill {
  height: 100%;
  width: 0%;
  transition: width 0.3s, background-color 0.3s;
}

.auth-perks-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.auth-perk-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.auth-perk-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(223, 183, 74, 0.15);
  color: #dfb74a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .auth-card-split {
    grid-template-columns: 1fr;
  }
  .auth-info-side {
    display: none;
  }
}

/* Enhanced Signup Custom Design Styles */
.account-type-switcher {
  display: flex;
  background: #f1f5f9;
  padding: 4px;
  border-radius: var(--radius-full);
  margin-bottom: 22px;
}

.account-type-btn {
  flex: 1;
  padding: 8px 12px;
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 700;
  color: #64748b;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
}

.account-type-btn.active {
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.welcome-reward-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #fdf8eb 0%, #faedd0 100%);
  border: 1px solid rgba(197, 155, 39, 0.4);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 22px;
  box-shadow: 0 4px 14px rgba(197, 155, 39, 0.12);
}

.reward-icon-box {
  font-size: 1.4rem;
}

.reward-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: #8c6411;
  margin-bottom: 2px;
}

.reward-desc {
  font-size: 0.725rem;
  color: #785a18;
}

.input-with-icon {
  position: relative;
}

.input-icon-left {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
}

.input-with-icon .auth-input {
  padding-left: 42px;
}

.password-criteria-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 8px;
}

.criteria-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  color: #94a3b8;
  transition: all 0.2s ease;
}

.criteria-item.valid,
.criteria-item.met {
  color: #34d399;
  font-weight: 700;
}

.criteria-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(148, 163, 184, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 900;
  color: #94a3b8;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.criteria-item.valid .criteria-dot,
.criteria-item.met .criteria-dot {
  background: #10b981;
  border-color: #10b981;
  color: #ffffff;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

/* Premium Right Side Glassmorphism Showcase */
.auth-info-side {
  background: radial-gradient(circle at 80% 20%, #1e1910 0%, #0c0e14 60%, #06070a 100%);
  color: #ffffff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  border-left: 1px solid rgba(223, 183, 74, 0.15);
}

.auth-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.auth-glow-1 {
  width: 220px;
  height: 220px;
  background: rgba(223, 183, 74, 0.12);
  top: -40px;
  right: -40px;
}

.auth-glow-2 {
  width: 180px;
  height: 180px;
  background: rgba(59, 130, 246, 0.08);
  bottom: 20px;
  left: -40px;
}

.auth-side-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.auth-brand-badge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.auth-verified-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #34d399;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
}

.auth-verified-tag .pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: pulse 2s infinite;
}

.auth-headline-block {
  margin-top: 4px;
}

.auth-hero-heading {
  font-size: 1.85rem;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 10px;
}

.gold-shimmer-text {
  background: linear-gradient(135deg, #fce09b 0%, #dfb74a 50%, #b8860b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.auth-hero-sub {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.55;
}

/* VIP Spotlight Card */
.auth-vip-card {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(223, 183, 74, 0.28);
  border-radius: 16px;
  padding: 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.auth-vip-card:hover {
  border-color: rgba(223, 183, 74, 0.45);
  transform: translateY(-2px);
}

.vip-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.vip-asset-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vip-asset-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(223, 183, 74, 0.25) 0%, rgba(223, 183, 74, 0.05) 100%);
  border: 1px solid rgba(223, 183, 74, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.vip-asset-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.vip-chip {
  font-size: 0.6rem;
  font-weight: 800;
  padding: 2px 6px;
  background: rgba(223, 183, 74, 0.2);
  color: #dfb74a;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.vip-asset-symbol {
  font-size: 0.725rem;
  color: #94a3b8;
}

.vip-price-tag {
  text-align: right;
}

.vip-live-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  font-variant-numeric: tabular-nums;
}

.vip-live-change {
  font-size: 0.7rem;
  font-weight: 700;
  color: #34d399;
}

/* Sparkline in VIP Card */
.vip-sparkline-box {
  position: relative;
  height: 60px;
  width: 100%;
  margin: 10px 0 16px;
}

.vip-spark-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.vip-chart-pulse {
  position: absolute;
  right: 0;
  top: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #dfb74a;
  box-shadow: 0 0 10px #dfb74a;
  animation: pulse 1.5s infinite;
}

/* Perks Row Inside Card */
.vip-perks-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
}

.vip-perk-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: #cbd5e1;
}

.vip-perk-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #dfb74a;
  box-shadow: 0 0 6px rgba(223, 183, 74, 0.6);
}

/* Social Proof & Trust Cluster */
.auth-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 14px;
  border-radius: 12px;
}

.proof-avatars-cluster {
  display: flex;
}

.proof-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  margin-left: -6px;
  border: 2px solid #0d0f14;
}

.proof-avatar:first-child {
  margin-left: 0;
}

.proof-text {
  flex: 1;
}

.proof-stars {
  font-size: 0.8rem;
  color: #dfb74a;
  line-height: 1.2;
}

.proof-sub {
  font-size: 0.68rem;
  color: #94a3b8;
  margin-top: 1px;
}

/* Side Footer */
.auth-side-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.auth-footer-tag {
  font-size: 0.725rem;
  font-weight: 600;
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.05);
  padding: 3px 8px;
  border-radius: 6px;
}




/* ==========================================================================
   Innovations Page Styles (Premium Luxury White Theme)
   ========================================================================== */
.inno-page-body {
  background: #ffffff;
  color: #334155;
}

.inno-hero-section {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #faf8f5 55%, #f4eee1 100%);
  padding: 90px 0 110px;
  overflow: hidden;
  border-bottom: 1px solid #e8e2d5;
}

.inno-ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.inno-glow-1 {
  width: 450px;
  height: 450px;
  background: rgba(197, 155, 39, 0.12);
  top: -60px;
  left: 5%;
}

.inno-glow-2 {
  width: 380px;
  height: 380px;
  background: rgba(56, 189, 248, 0.08);
  bottom: 0;
  right: 10%;
}

.inno-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 52px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.inno-eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(197, 155, 39, 0.1);
  border: 1px solid rgba(197, 155, 39, 0.35);
  color: #9a7218;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 22px;
}

.inno-hero-title {
  font-size: 3.2rem;
  line-height: 1.15;
  color: #0f172a;
  margin-bottom: 22px;
  font-weight: 800;
}

.gold-shimmer-text {
  background: linear-gradient(135deg, #c59b27 0%, #dfb74a 50%, #9a7218 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.inno-hero-desc {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 34px;
}

.inno-hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-outline-white {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid #cbd5e1;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.btn-outline-white:hover {
  background: #fdfaf3;
  border-color: #c59b27;
  color: #9a7218;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(197, 155, 39, 0.15);
}

.inno-hero-visual-box {
  position: relative;
}

.inno-visual-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(197, 155, 39, 0.35);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(197, 155, 39, 0.1);
  aspect-ratio: 16 / 9;
  background: #f8fafc;
}

.inno-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.inno-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(15, 23, 42, 0.2) 100%);
  pointer-events: none;
}

.inno-floating-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 7px 14px;
  border-radius: 10px;
  font-size: 0.75rem;
  color: #0f172a;
  font-weight: 700;
  z-index: 3;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.inno-badge-top {
  top: 16px;
  left: 16px;
}

.inno-badge-bottom {
  bottom: 16px;
  right: 16px;
}

.badge-dot-cyan {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0284c7;
  box-shadow: 0 0 8px rgba(2, 132, 199, 0.6);
}

.badge-dot-gold {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c59b27;
  box-shadow: 0 0 8px rgba(197, 155, 39, 0.6);
}

/* ==========================================================================
   Innovation Sections (01 - 06 Alternating Layouts)
   ========================================================================== */
.inno-main-wrapper {
  background: #ffffff;
}

.inno-section {
  padding: 100px 0;
  background: #ffffff;
  border-bottom: 1px solid #f1f5f9;
  position: relative;
}

.inno-section-alt {
  background: #faf8f5;
  border-bottom: 1px solid #ede7dc;
}

.inno-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.inno-grid-image-right {
  grid-template-columns: 1.15fr 1fr;
}

.inno-section-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(197, 155, 39, 0.22);
  line-height: 1;
  margin-bottom: 4px;
}

.inno-category-pill {
  display: inline-block;
  font-size: 0.725rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #9a7218;
  background: rgba(197, 155, 39, 0.1);
  border: 1px solid rgba(197, 155, 39, 0.3);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.inno-heading {
  font-size: 2.3rem;
  line-height: 1.25;
  color: #0f172a;
  margin-bottom: 20px;
  font-weight: 700;
}

.inno-paragraph {
  font-size: 0.98rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 16px;
}

.inno-areas-box {
  background: #ffffff;
  border: 1px solid rgba(197, 155, 39, 0.28);
  border-radius: 14px;
  padding: 24px 28px;
  margin-top: 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
}

.inno-areas-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.inno-areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}

.inno-area-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #334155;
  font-weight: 500;
}

.bullet-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c59b27;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(197, 155, 39, 0.5);
}

.inno-image-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(197, 155, 39, 0.25);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
  aspect-ratio: 16 / 9;
  background: #f8fafc;
}

.inno-section-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.inno-tag-floating {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(197, 155, 39, 0.35);
  color: #9a7218;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Custom Technological Visual Cards */
.inno-pro-visual {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
}

.inno-visual-web3 {
  background: linear-gradient(135deg, #f8fafc 0%, #eef2f6 100%);
}

.web3-holo-plane {
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.web3-holo-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}

.web3-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.web3-dot.red { background: #ef4444; }
.web3-dot.yellow { background: #f59e0b; }
.web3-dot.green { background: #10b981; }

.web3-holo-title {
  font-size: 0.72rem;
  color: #64748b;
  font-family: monospace;
  font-weight: 600;
  margin-left: 8px;
}

.web3-node-cluster {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.web3-node-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 10px 8px;
  text-align: center;
}

.web3-node-box.active {
  border-color: rgba(197, 155, 39, 0.5);
  background: rgba(197, 155, 39, 0.08);
}

.node-icon { font-size: 1.1rem; display: block; margin-bottom: 4px; }
.node-txt { font-size: 0.72rem; color: #0f172a; font-weight: 700; display: block; }
.node-status { font-size: 0.62rem; color: #059669; font-weight: 800; font-family: monospace; }

.web3-code-stream {
  background: #0f172a;
  border-radius: 6px;
  padding: 10px 12px;
  font-family: monospace;
  font-size: 0.68rem;
  color: #38bdf8;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Wallet Visual */
.inno-visual-wallet {
  background: linear-gradient(135deg, #fbf9f4 0%, #f4eee1 100%);
}

.wallet-vault-graphic {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wallet-glass-shield {
  background: #ffffff;
  border: 1px solid rgba(197, 155, 39, 0.35);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(197, 155, 39, 0.1);
  z-index: 2;
  width: 82%;
}

.shield-crest-icon { margin-bottom: 8px; }
.wallet-vault-title { font-size: 0.82rem; font-weight: 800; color: #9a7218; letter-spacing: 0.1em; margin-bottom: 8px; }
.wallet-metric-row { display: flex; flex-direction: column; gap: 4px; font-size: 0.75rem; color: #64748b; }
.wallet-metric-row strong { color: #0f172a; }

.wallet-orbit-node {
  position: absolute;
  background: #ffffff;
  border: 1px solid rgba(197, 155, 39, 0.3);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  color: #0f172a;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.wallet-orbit-node.node-1 { top: 12px; left: 12px; }
.wallet-orbit-node.node-2 { bottom: 12px; left: 15px; }
.wallet-orbit-node.node-3 { top: 12px; right: 12px; }

/* Payment Visual */
.inno-visual-payments {
  background: linear-gradient(135deg, #f0fdf4 0%, #e0f2fe 100%);
}

.payment-corridor {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
}

.payment-interface-node {
  background: #ffffff;
  border: 1px solid #bae6fd;
  border-radius: 12px;
  padding: 14px;
  text-align: center;
  width: 115px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.p-icon { font-size: 1.5rem; display: block; margin-bottom: 4px; }
.p-lbl { font-size: 0.72rem; font-weight: 700; color: #0f172a; }
.p-status { font-size: 0.65rem; color: #059669; font-weight: 700; font-family: monospace; }

.payment-laser-flow {
  flex: 1;
  position: relative;
  height: 3px;
  background: linear-gradient(90deg, #0284c7 0%, #c59b27 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.laser-lbl {
  position: absolute;
  top: -18px;
  font-size: 0.62rem;
  color: #475569;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.laser-packet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #c59b27;
  box-shadow: 0 0 10px #c59b27;
  animation: pulse 1.2s infinite;
}

/* Decentralized Mesh Visual */
.inno-visual-decent {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.mesh-network-graphic {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mesh-center-orb {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dfb74a 0%, #a37b1d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 0 25px rgba(197, 155, 39, 0.4);
  z-index: 2;
  color: #fff;
}

.mesh-satellite {
  position: absolute;
  background: #ffffff;
  border: 1px solid #bae6fd;
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #0284c7;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.mesh-satellite.sat-1 { top: 12px; left: 16px; }
.mesh-satellite.sat-2 { top: 12px; right: 16px; }
.mesh-satellite.sat-3 { bottom: 12px; left: 16px; }
.mesh-satellite.sat-4 { bottom: 12px; right: 16px; }

.mesh-svg-paths {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Community Visual */
.inno-visual-community {
  background: linear-gradient(135deg, #faf5ff 0%, #f5f3ff 100%);
}

.global-ecosystem-visual {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eco-core {
  background: #ffffff;
  border: 1px solid rgba(197, 155, 39, 0.35);
  border-radius: 14px;
  padding: 18px 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.eco-core-symbol { font-size: 1.6rem; display: block; margin-bottom: 4px; }
.eco-core-txt { font-size: 0.78rem; font-weight: 800; color: #9a7218; text-transform: uppercase; letter-spacing: 0.08em; }

.eco-cluster {
  position: absolute;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  color: #0f172a;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.eco-cluster.eco-c1 { top: 12px; left: 14px; }
.eco-cluster.eco-c2 { top: 12px; right: 14px; }
.eco-cluster.eco-c3 { bottom: 12px; left: 14px; }
.eco-cluster.eco-c4 { bottom: 12px; right: 14px; }

/* ==========================================================================
   Innovation Process (Horizontal Timeline)
   ========================================================================= */
.inno-process-section {
  padding: 100px 0;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.inno-section-header-center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.inno-subheading {
  font-size: 1.05rem;
  color: #64748b;
  margin-top: 10px;
}

.inno-timeline-track {
  position: relative;
}

.inno-timeline-line {
  position: absolute;
  top: 36px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, #c59b27 0%, #38bdf8 50%, #c59b27 100%);
  z-index: 1;
  opacity: 0.4;
}

.inno-timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.inno-timeline-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 32px 22px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.inno-timeline-card:hover {
  transform: translateY(-6px);
  border-color: rgba(197, 155, 39, 0.5);
  box-shadow: 0 14px 30px rgba(197, 155, 39, 0.12);
}

.timeline-step-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fdfaf3;
  border: 2px solid #c59b27;
  color: #9a7218;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(197, 155, 39, 0.15);
}

.timeline-step-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.timeline-step-desc {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.65;
}

/* ==========================================================================
   Technology Ecosystem Badges Grid
   ========================================================================== */
.inno-eco-section {
  padding: 100px 0;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

.inno-tech-badges-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.tech-badge-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 22px 18px;
  transition: all 0.2s ease;
}

.tech-badge-card:hover {
  background: #ffffff;
  border-color: rgba(197, 155, 39, 0.4);
  box-shadow: 0 8px 24px rgba(197, 155, 39, 0.1);
  transform: translateY(-3px);
}

.tech-badge-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.tech-badge-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.tech-badge-card p {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.55;
}

/* ==========================================================================
   Innovation Principles
   ========================================================================== */
.inno-principles-section {
  padding: 100px 0;
  background: #fbf9f4;
  border-bottom: 1px solid #ede7dc;
}

.inno-principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.inno-principle-card {
  background: #ffffff;
  border: 1px solid rgba(197, 155, 39, 0.25);
  border-radius: 14px;
  padding: 32px 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.inno-principle-card:hover {
  transform: translateY(-5px);
  border-color: rgba(197, 155, 39, 0.5);
  box-shadow: 0 12px 28px rgba(197, 155, 39, 0.12);
}

.principle-number {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 800;
  color: #9a7218;
  margin-bottom: 14px;
  line-height: 1;
}

.principle-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.principle-desc {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.65;
}

/* ==========================================================================
   Final CTA Section
   ========================================================================== */
.inno-final-cta-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #faf8f5 0%, #f2ebdd 100%);
  border-top: 1px solid #e8e2d5;
}

.inno-cta-box {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.inno-cta-title {
  font-size: 2.8rem;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 16px;
}

.inno-cta-desc {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 36px;
}

.inno-cta-btn-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   Responsive Breakpoints for Innovations
   ========================================================================== */
@media (max-width: 1100px) {
  .inno-tech-badges-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .inno-hero-grid,
  .inno-grid,
  .inno-grid-image-right {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .inno-hero-title {
    font-size: 2.4rem;
  }

  .inno-heading {
    font-size: 1.9rem;
  }

  .inno-grid-image-right .inno-media-col {
    order: -1;
  }

  .inno-timeline-grid,
  .inno-principles-grid {
    grid-template-columns: 1fr 1fr;
  }

  .inno-timeline-line {
    display: none;
  }
}

@media (max-width: 600px) {
  .inno-timeline-grid,
  .inno-principles-grid,
  .inno-tech-badges-grid {
    grid-template-columns: 1fr;
  }

  .inno-areas-grid {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   About Page Redesign Styles (Premium Corporate Web3 Aesthetic)
   ========================================================================== */
.about-page-body {
  background: #080a0f;
  color: #cbd5e1;
}

.abt-hero-section {
  position: relative;
  background: radial-gradient(circle at 65% 35%, #181d28 0%, #0c0e14 65%, #050608 100%);
  padding: 80px 0 100px;
  overflow: hidden;
  border-bottom: 1px solid rgba(223, 183, 74, 0.15);
}

.abt-ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.abt-glow-1 {
  width: 400px;
  height: 400px;
  background: rgba(223, 183, 74, 0.08);
  top: -80px;
  left: 5%;
}

.abt-glow-2 {
  width: 320px;
  height: 320px;
  background: rgba(56, 189, 248, 0.07);
  bottom: -20px;
  right: 10%;
}

.abt-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.abt-eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(223, 183, 74, 0.12);
  border: 1px solid rgba(223, 183, 74, 0.35);
  color: #dfb74a;
  font-size: 0.725rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.abt-hero-title {
  font-size: 3.1rem;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 800;
}

.abt-hero-desc {
  font-size: 1.025rem;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 20px;
}

.abt-hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.abt-hero-visual-box {
  position: relative;
}

.abt-visual-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(223, 183, 74, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  aspect-ratio: 16 / 9;
}

.abt-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.abt-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 7, 10, 0.1) 0%, rgba(6, 7, 10, 0.45) 100%);
  pointer-events: none;
}

.abt-floating-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(12, 14, 20, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.72rem;
  color: #e2e8f0;
  font-weight: 600;
  z-index: 3;
}

.abt-floating-badge.badge-1 { top: 14px; left: 14px; }
.abt-floating-badge.badge-2 { bottom: 14px; right: 14px; }

/* Main Wrapper & Sections */
.abt-main-wrapper {
  background: #080a0f;
}

.abt-section {
  padding: 100px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.abt-section-alt {
  background: radial-gradient(circle at 50% 50%, #0d1017 0%, #080a0f 100%);
}

.abt-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.abt-grid-media-right {
  grid-template-columns: 1.15fr 1fr;
}

.abt-section-tag {
  display: inline-block;
  font-size: 0.725rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #dfb74a;
  background: rgba(223, 183, 74, 0.1);
  border: 1px solid rgba(223, 183, 74, 0.3);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.abt-section-title {
  font-size: 2.3rem;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 20px;
}

.abt-body-text {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.75;
  margin-bottom: 16px;
}

.abt-body-text-lg {
  font-size: 1.05rem;
  color: #cbd5e1;
  line-height: 1.75;
  margin-bottom: 18px;
}

.abt-highlight-quote {
  background: rgba(223, 183, 74, 0.06);
  border-left: 3px solid #dfb74a;
  padding: 14px 18px;
  border-radius: 0 8px 8px 0;
  margin: 20px 0;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 600;
}

.abt-center-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.abt-center-sub {
  font-size: 1rem;
  color: #94a3b8;
  line-height: 1.65;
  margin-top: 10px;
}

.abt-card-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(223, 183, 74, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  aspect-ratio: 16 / 9;
  background: #0d1017;
  display: flex;
  align-items: center;
  justify-content: center;
}

.abt-section-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.abt-tag-floating {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(9, 11, 16, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(223, 183, 74, 0.3);
  color: #dfb74a;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 3;
}

/* 3D Bridge Visual Component */
.bridge-visual-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px;
  gap: 12px;
  background: radial-gradient(circle at center, #151a24 0%, #08090d 100%);
}

.bridge-side {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px 14px;
  text-align: center;
  flex: 1;
}

.bridge-icon { font-size: 1.6rem; display: block; margin-bottom: 6px; }
.bridge-side h4 { font-size: 0.8rem; font-weight: 800; color: #fff; margin-bottom: 4px; }
.bridge-side p { font-size: 0.68rem; color: #94a3b8; line-height: 1.35; }

.bridge-connector {
  position: relative;
  width: 90px;
  height: 3px;
  background: linear-gradient(90deg, #38bdf8 0%, #dfb74a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bridge-pulse-laser {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 10px #dfb74a;
  animation: pulse 1.5s infinite;
}

.bridge-badge {
  position: absolute;
  top: -20px;
  font-size: 0.55rem;
  font-weight: 800;
  color: #dfb74a;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* Vision Standout Box & Highlights */
.abt-vision-content-box {
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
}

.abt-vision-standout {
  background: radial-gradient(circle at center, rgba(223, 183, 74, 0.1) 0%, rgba(13, 16, 23, 0.6) 100%);
  border: 1px solid rgba(223, 183, 74, 0.3);
  border-radius: 16px;
  padding: 32px 36px;
  margin-top: 30px;
}

.abt-vision-standout h3 {
  font-size: 1.35rem;
  color: #ffffff;
  line-height: 1.55;
}

.vision-highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.vision-highlight-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px 18px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.vision-highlight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(223, 183, 74, 0.4);
}

.vh-num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 800;
  color: #dfb74a;
  margin-bottom: 8px;
}

.vh-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.vh-desc {
  font-size: 0.8rem;
  color: #94a3b8;
  line-height: 1.5;
}

/* Mission Areas 6-Grid */
.abt-mission-areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.abt-mission-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 28px 22px;
  transition: all 0.25s ease;
}

.abt-mission-card:hover {
  background: rgba(223, 183, 74, 0.04);
  border-color: rgba(223, 183, 74, 0.35);
  transform: translateY(-4px);
}

.abt-m-icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.abt-mission-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.abt-mission-card p {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.6;
}

/* Philosophy 6-Grid */
.abt-philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.philosophy-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(223, 183, 74, 0.2);
  border-radius: 14px;
  padding: 30px 24px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.philosophy-card:hover {
  transform: translateY(-5px);
  border-color: rgba(223, 183, 74, 0.45);
}

.ph-num {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 800;
  color: #dfb74a;
  margin-bottom: 12px;
}

.ph-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.ph-desc {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.65;
}

/* Interactive Circular Ecosystem Diagram */
.eco-interactive-wrapper {
  position: relative;
  max-width: 920px;
  height: 600px;
  margin: 40px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eco-center-hub {
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, #1a1710 0%, #0c0e14 70%, #06070a 100%);
  border: 2px solid #dfb74a;
  box-shadow: 0 0 35px rgba(223, 183, 74, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 5;
  padding: 12px;
}

.hub-subtitle {
  font-size: 0.65rem;
  font-weight: 800;
  color: #dfb74a;
  letter-spacing: 0.12em;
}

.eco-svg-network {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.eco-orbit-item {
  position: absolute;
  background: rgba(13, 16, 24, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(223, 183, 74, 0.25);
  border-radius: 12px;
  padding: 12px 16px;
  width: 220px;
  z-index: 6;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.eco-orbit-item:hover {
  transform: scale(1.04);
  border-color: #dfb74a;
}

.orbit-badge {
  font-size: 0.725rem;
  font-weight: 800;
  color: #dfb74a;
  margin-bottom: 4px;
}

.orbit-desc {
  font-size: 0.7rem;
  color: #cbd5e1;
  line-height: 1.4;
}

/* Positioning 7 ecosystem nodes around the circular orbit */
.eco-orbit-item.item-1 { top: 10px; left: 50%; transform: translateX(-50%); }
.eco-orbit-item.item-2 { top: 90px; right: 20px; }
.eco-orbit-item.item-3 { bottom: 170px; right: 20px; }
.eco-orbit-item.item-4 { bottom: 15px; right: 20%; }
.eco-orbit-item.item-5 { bottom: 15px; left: 20%; }
.eco-orbit-item.item-6 { bottom: 170px; left: 20px; }
.eco-orbit-item.item-7 { top: 90px; left: 20px; }

/* How We Build Timeline */
.abt-build-track {
  position: relative;
  margin-top: 20px;
}

.abt-build-line {
  position: absolute;
  top: 36px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(90deg, #dfb74a 0%, #38bdf8 50%, #dfb74a 100%);
  opacity: 0.35;
  z-index: 1;
}

.abt-build-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.build-step-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 30px 20px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.build-step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(223, 183, 74, 0.4);
}

.build-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0d1017;
  border: 2px solid #dfb74a;
  color: #dfb74a;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 0 14px rgba(223, 183, 74, 0.3);
}

.build-step-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.build-step-text {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.6;
}

/* World Map Visual */
.abt-world-map-visual {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(223, 183, 74, 0.25);
  background: #0b0e14;
}

.world-matrix-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Commitment Checklist */
.commitment-checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
  max-width: 860px;
  margin: 0 auto;
}

.commitment-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 16px 20px;
}

.commitment-item-wide {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(223, 183, 74, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-color: rgba(223, 183, 74, 0.3);
}

.commit-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(223, 183, 74, 0.2);
  color: #dfb74a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
}

.commit-text {
  font-size: 0.9rem;
  color: #cbd5e1;
  font-weight: 600;
}

/* Road Ahead Card */
.road-ahead-card {
  max-width: 840px;
  margin: 0 auto;
  background: radial-gradient(circle at top center, #171c26 0%, #0b0e14 70%);
  border: 1px solid rgba(223, 183, 74, 0.3);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
}

.road-title {
  font-size: 2.2rem;
  color: #ffffff;
  margin: 10px 0 20px;
}

.road-body-content p {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.75;
  margin-bottom: 14px;
}

/* Final CTA Section & Statement */
.abt-final-cta-section {
  padding: 100px 0;
  background: radial-gradient(circle at center, #151922 0%, #06070a 100%);
}

.abt-cta-box {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.abt-cta-title {
  font-size: 2.8rem;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 18px;
}

.abt-cta-desc {
  font-size: 1.025rem;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 36px;
}

.abt-cta-btn-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.final-brand-statement {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.statement-quote {
  font-size: 2.1rem;
  color: #dfb74a;
  line-height: 1.3;
}

/* Responsive Styles for About Redesign */
@media (max-width: 992px) {
  .abt-hero-grid,
  .abt-grid,
  .abt-grid-media-right {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .abt-hero-title {
    font-size: 2.4rem;
  }

  .abt-section-title {
    font-size: 1.9rem;
  }

  .abt-mission-areas-grid,
  .abt-philosophy-grid {
    grid-template-columns: 1fr 1fr;
  }

  .vision-highlights-grid,
  .abt-build-grid {
    grid-template-columns: 1fr 1fr;
  }

  .abt-build-line {
    display: none;
  }

  .eco-interactive-wrapper {
    height: auto;
    flex-direction: column;
    gap: 16px;
  }

  .eco-center-hub {
    position: relative;
    margin-bottom: 20px;
  }

  .eco-orbit-item {
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: 100%;
    max-width: 480px;
  }

  .eco-svg-network {
    display: none;
  }
}

@media (max-width: 640px) {
  .abt-mission-areas-grid,
  .abt-philosophy-grid,
  .vision-highlights-grid,
  .abt-build-grid,
  .commitment-checklist-grid {
    grid-template-columns: 1fr;
  }

  .commitment-item-wide {
    grid-column: span 1;
  }

  .statement-quote {
    font-size: 1.7rem;
  }
}

/* ==========================================================================
   Auth & Dashboard Styles
   ========================================================================== */
.auth-alert {
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.auth-alert-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
}

.auth-alert-success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #16a34a;
}

/* Dashboard Styles */
.dashboard-page-body {
  background-color: #f8fafc;
}

.dash-hero-section {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 36px 0 28px;
}

.dash-user-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.dash-user-profile {
  display: flex;
  align-items: center;
  gap: 18px;
}

.dash-user-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.3rem;
  box-shadow: 0 4px 14px rgba(197, 155, 39, 0.35);
  flex-shrink: 0;
}

.dash-welcome-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--primary-gold-dark);
  margin-bottom: 4px;
}

.dash-user-name {
  font-size: 1.9rem;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 4px;
}

.dash-user-email {
  font-size: 0.85rem;
  color: #64748b;
}

.dash-kyc-badge {
  color: #059669;
  font-weight: 700;
  background: #ecfdf5;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.78rem;
}

.dash-action-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.dash-alert {
  padding: 10px 16px;
  border-radius: 8px;
  margin-top: 18px;
  font-size: 0.85rem;
  font-weight: 600;
}

.dash-alert-success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #16a34a;
}

.dash-main-container {
  padding: 36px 0 60px;
}

/* 4 Stats Grid */
.dash-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.dash-stat-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 22px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dash-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.dash-stat-card.primary-stat {
  border-color: rgba(197, 155, 39, 0.4);
  background: linear-gradient(135deg, #ffffff 0%, #fdfbf7 100%);
}

.stat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.stat-lbl {
  font-size: 0.8rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.stat-badge-gbp {
  font-size: 0.68rem;
  background: #f1f5f9;
  color: #334155;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
}

.stat-val {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat-sub {
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.stat-green {
  color: #059669;
  font-weight: 700;
}

.stat-red {
  color: #dc2626;
  font-weight: 700;
}

.stat-period {
  color: #94a3b8;
}

/* Two Column Content Grid */
.dash-content-grid {
  display: grid;
  grid-template-columns: 1.75fr 1fr;
  gap: 24px;
}

.dash-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.dash-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.dash-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}

.dash-card-desc {
  font-size: 0.825rem;
  color: #64748b;
}

.dash-table-responsive {
  width: 100%;
  overflow-x: auto;
}

.dash-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.dash-table th {
  font-size: 0.75rem;
  font-weight: 800;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 10px 12px;
  border-bottom: 1px solid #e2e8f0;
}

.dash-table td {
  padding: 14px 12px;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.88rem;
  color: #334155;
  vertical-align: middle;
}

.dash-table tr:hover td {
  background: #faf8f5;
}

.asset-symbol-cell {
  display: flex;
  align-items: center;
  gap: 10px;
}

.asset-icon-box {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fdfaf3;
  border: 1px solid rgba(197, 155, 39, 0.3);
  color: var(--primary-gold-dark);
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.asset-name-txt {
  font-weight: 700;
  color: #0f172a;
}

.asset-sub-txt {
  font-size: 0.72rem;
  color: #94a3b8;
}

.asset-balance-val {
  font-family: monospace;
  font-weight: 600;
  color: #0f172a;
}

.order-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.order-badge.buy {
  background: #ecfdf5;
  color: #059669;
}

.order-badge.deposit {
  background: #eff6ff;
  color: #2563eb;
}

.order-badge.staking {
  background: #faf5ff;
  color: #9333ea;
}

.status-pill-green {
  color: #059669;
  font-weight: 700;
  font-size: 0.8rem;
}

/* Quick Convert Box */
.convert-input-box {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 10px 14px;
}

.convert-lbl {
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748b;
  display: block;
  margin-bottom: 4px;
}

.convert-input-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.convert-amount-input {
  border: none;
  background: transparent;
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  outline: none;
  width: 100%;
}

.convert-currency-select {
  border: 1px solid #cbd5e1;
  background: #ffffff;
  padding: 6px 10px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  color: #0f172a;
  outline: none;
}

.convert-arrow-divider {
  text-align: center;
  margin: -6px 0;
  position: relative;
  z-index: 2;
}

.convert-arrow-divider span {
  display: inline-flex;
  width: 28px;
  height: 28px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: #64748b;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Security Widget */
.security-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.sec-icon-circle {
  font-size: 1.4rem;
}

.dash-security-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dash-security-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.825rem;
  color: #475569;
  padding-bottom: 8px;
  border-bottom: 1px dashed #e2e8f0;
}

.dash-security-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Referral Card */
.dash-referral-card {
  background: linear-gradient(135deg, #fdfbf7 0%, #f7f1e4 100%);
  border: 1px solid rgba(197, 155, 39, 0.35);
}

.ref-badge {
  display: inline-block;
  background: rgba(197, 155, 39, 0.15);
  color: #9a7218;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.ref-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.ref-desc {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 12px;
}

.ref-copy-box {
  display: flex;
  gap: 8px;
}

.ref-input {
  flex: 1;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 0.75rem;
  color: #475569;
  outline: none;
}

/* Responsive Dashboard & Package Hero Stats */
@media (max-width: 1080px) {
  .dash-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dash-content-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .pkg-hero-stats-grid {
    grid-template-columns: 1fr 1fr !important;
    min-width: 100% !important;
    width: 100% !important;
    margin-top: 10px;
  }
  .db-hero-banner {
    padding: 24px 0 20px !important;
  }
  .db-hero-banner h1 {
    font-size: 1.85rem !important;
  }
}

@media (max-width: 540px) {
  .pkg-hero-stats-grid {
    grid-template-columns: 1fr !important;
    min-width: 100% !important;
  }
}

@media (max-width: 640px) {
  .dash-stats-grid {
    grid-template-columns: 1fr;
  }
  .dash-user-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   PAGE ENTRANCE & CARD MOTION ANIMATIONS
   ========================================================================== */
@keyframes pageFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes luxuryGlowPulse {
  0%, 100% {
    box-shadow: 0 0 15px rgba(202, 138, 4, 0.25);
  }
  50% {
    box-shadow: 0 0 26px rgba(202, 138, 4, 0.55);
  }
}

.animate-fade-in-up {
  animation: pageFadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Smooth Interactive Card Hover Lift */
.db-container > div,
.auth-card-single,
.ticker-coin-card,
.sheet-nav-tile {
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   MOBILE SIDE POPUP DRAWER MENU (OFF-CANVAS SLIDE-IN - DARK THEME)
   ========================================================================== */
.mobile-side-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(3, 4, 7, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.mobile-side-overlay.active {
  display: flex !important;
  opacity: 1;
}

.mobile-side-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  max-width: 86vw;
  background: #120c24;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: -10px 0 36px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100000;
  overflow-y: auto;
  color: #f8fafc;
}

.mobile-side-overlay.active .mobile-side-drawer {
  transform: translateX(0);
}

.side-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.side-drawer-close {
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.12);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #94a3b8;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.side-drawer-close:hover {
  background: #1f2937;
  color: #ffffff;
}

.side-drawer-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.side-user-card {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.side-user-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #120c24;
  border: 1.5px solid #0070f3;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 2px 8px rgba(0, 112, 243, 0.3);
}

.side-user-info {
  flex: 1;
  min-width: 0;
}

.side-user-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: #f8fafc;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.side-user-status {
  font-size: 0.72rem;
  font-weight: 700;
  color: #38bdf8;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}

.side-nav-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}

.side-nav-label {
  font-size: 0.7rem;
  font-weight: 800;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0 12px 6px;
}

.side-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 10px;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  transition: all 0.15s ease;
}

.side-nav-item:hover,
.side-nav-item.active {
  background: rgba(0, 102, 255, 0.15);
  color: #38bdf8;
}

.side-nav-item i {
  width: 20px;
  font-size: 1.05rem;
  text-align: center;
}

.side-drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.side-drawer-logout {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
  text-decoration: none;
  padding: 11px;
  border-radius: 10px;
  font-size: 0.84rem;
  font-weight: 800;
  text-align: center;
  transition: all 0.15s ease;
}

.side-drawer-logout:hover {
  background: rgba(239, 68, 68, 0.22);
  color: #fca5a5;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none !important;
  }
  .mobile-nav-toggle {
    display: flex !important;
  }
}

/* ==========================================================================
   GLOBAL DARK OBSIDIAN THEME OVERRIDES & BLUE ACCENTS
   ========================================================================== */
.db-hero-banner {
  background: #080c14 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: #f8fafc !important;
}

.db-hero-banner h1,
.db-hero-banner h2,
.db-hero-banner h3 {
  color: #ffffff !important;
}

.db-hero-banner p {
  color: #94a3b8 !important;
}

main,
.db-main-content,
.dashboard-page-body {
  background: #05070a !important;
  color: #f8fafc !important;
}

.pkg-plan-switcher {
  background: #0f1523 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* Global Tables in Dark Mode */
table {
  color: #f8fafc !important;
}

table th {
  color: #94a3b8 !important;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.1) !important;
}

table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  color: #e2e8f0 !important;
}

table tr:hover td {
  background: rgba(255, 255, 255, 0.02) !important;
}

/* ==========================================================================
   LEGAL & TRUST HUB STYLES (VIOLET THEME)
   ========================================================================== */
.legal-page-body {
  background: #090514 !important;
  color: #e2e8f0;
}

.legal-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.35);
  color: #c084fc;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.legal-layout-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  padding: 50px 0 90px;
  align-items: flex-start;
}

.legal-sidebar {
  position: sticky;
  top: 90px;
}

.legal-sidebar-card {
  background: #120c24;
  border: 1.5px solid rgba(168, 85, 247, 0.28);
  border-radius: 20px;
  padding: 24px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.legal-sidebar-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.text-violet-glow {
  color: #c084fc;
  text-shadow: 0 0 10px rgba(168, 85, 247, 0.6);
}

.legal-sidebar-desc {
  font-size: 0.84rem;
  color: #94a3b8;
  line-height: 1.5;
  margin-bottom: 20px;
}

.legal-nav-menu {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.legal-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  background: transparent;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.legal-nav-link i {
  font-size: 1rem;
  color: #94a3b8;
  width: 18px;
  text-align: center;
  transition: all 0.2s ease;
}

.legal-nav-link:hover {
  background: rgba(168, 85, 247, 0.1);
  color: #ffffff;
  border-color: rgba(168, 85, 247, 0.25);
}

.legal-nav-link:hover i {
  color: #c084fc;
}

.legal-nav-link.active {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.3) 0%, rgba(147, 51, 234, 0.2) 100%);
  border: 1.5px solid rgba(168, 85, 247, 0.45);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.2);
}

.legal-nav-link.active i {
  color: #c084fc;
}

.legal-support-box {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-support-text {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.legal-support-email {
  font-size: 0.85rem;
  font-weight: 700;
  color: #c084fc;
  text-decoration: none;
}

.legal-support-email:hover {
  text-decoration: underline;
}

/* Article Content */
.legal-article-content {
  background: #120c24;
  border: 1.5px solid rgba(168, 85, 247, 0.25);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(124, 58, 237, 0.08);
}

.legal-callout-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(168, 85, 247, 0.08);
  border: 1px solid rgba(168, 85, 247, 0.25);
  border-left: 4px solid #a855f7;
  padding: 18px 20px;
  border-radius: 12px;
  margin-bottom: 36px;
}

.callout-icon {
  font-size: 1.3rem;
  color: #c084fc;
  margin-top: 2px;
  flex-shrink: 0;
}

.callout-text {
  font-size: 0.92rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.legal-section-block {
  margin-bottom: 36px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-section-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.legal-section-heading {
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
}

.legal-article-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 14px;
}

.legal-list {
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-list li {
  font-size: 0.93rem;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 8px;
}

.legal-list li strong {
  color: #ffffff;
}

.legal-subgrid-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 18px;
}

.legal-card-item {
  background: #180f30;
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 16px;
  padding: 22px;
}

.legal-card-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.legal-card-item p {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 0;
}

.badge-tier {
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  margin-right: 6px;
}

.legal-inline-link {
  color: #c084fc;
  text-decoration: underline;
}

/* Proof of Reserves Metrics Grid */
.por-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 18px;
}

.por-card {
  background: #180f30;
  border: 1px solid rgba(168, 85, 247, 0.22);
  border-radius: 16px;
  padding: 22px;
}

.por-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.por-coin {
  font-size: 1.02rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.por-ratio {
  font-size: 1.15rem;
  font-weight: 800;
  color: #34d399;
}

.por-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 12px;
}

.por-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #10b981 0%, #34d399 100%);
  border-radius: 999px;
}

.por-sub {
  font-size: 0.8rem;
  color: #94a3b8;
}

.por-sub strong {
  color: #ffffff;
}

@media (max-width: 900px) {
  .legal-layout-grid {
    grid-template-columns: 1fr;
  }
  .legal-sidebar {
    position: static;
  }
  .legal-subgrid-cards,
  .por-metrics-grid {
    grid-template-columns: 1fr;
  }
  .legal-article-content {
    padding: 24px;
  }
}

/* ==========================================================================
   COMPANY PAGES STYLES: CONTACT, HELP & VISION (VIOLET THEME)
   ========================================================================== */

/* --- Contact Support Page --- */
.contact-page-wrapper {
  padding: 50px 0 90px;
}

.contact-alert {
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 30px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-grid-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: flex-start;
}

.contact-form-card {
  background: #120c24;
  border: 1.5px solid rgba(168, 85, 247, 0.28);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(124, 58, 237, 0.08);
}

.contact-card-title {
  font-size: 1.65rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.contact-card-desc {
  font-size: 0.92rem;
  color: #94a3b8;
  margin-bottom: 28px;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form-group label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #cbd5e1;
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: #090514;
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 12px;
  color: #ffffff;
  font-size: 0.92rem;
  outline: none;
  transition: all 0.2s ease;
  font-family: inherit;
}

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
  border-color: #a855f7;
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.25);
  background: #140b2b;
}

.btn-contact-submit {
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: #120c24;
  border: 1px solid rgba(168, 85, 247, 0.22);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.contact-icon-bubble {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(168, 85, 247, 0.18);
  border: 1px solid rgba(168, 85, 247, 0.35);
  color: #c084fc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.contact-info-text p {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.5;
  margin-bottom: 8px;
}

.contact-link {
  font-size: 0.92rem;
  font-weight: 700;
  color: #c084fc;
  text-decoration: none;
  display: inline-block;
}

.contact-link:hover {
  text-decoration: underline;
}

.contact-sla {
  display: block;
  font-size: 0.76rem;
  color: #10b981;
  font-weight: 600;
  margin-top: 4px;
}

.hq-address {
  font-style: normal;
  color: #cbd5e1 !important;
  line-height: 1.6 !important;
}

.contact-social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.social-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.25);
  color: #cbd5e1;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.social-chip:hover {
  background: rgba(168, 85, 247, 0.25);
  color: #ffffff;
  border-color: #a855f7;
}

/* --- Help & Knowledge Base Page --- */
.help-page-wrapper {
  padding: 50px 0 90px;
}

.help-search-wrapper {
  max-width: 680px;
  margin: 32px auto 0;
}

.help-search-box {
  position: relative;
  display: flex;
  align-items: center;
}

.help-search-icon {
  position: absolute;
  left: 20px;
  font-size: 1.1rem;
  color: #a855f7;
}

#helpSearchInput {
  width: 100%;
  padding: 16px 20px 16px 54px;
  background: #120c24;
  border: 1.5px solid rgba(168, 85, 247, 0.35);
  border-radius: 999px;
  color: #ffffff;
  font-size: 1rem;
  outline: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(124, 58, 237, 0.15);
  transition: all 0.2s ease;
}

#helpSearchInput:focus {
  border-color: #c084fc;
  box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.3), 0 0 25px rgba(124, 58, 237, 0.25);
}

.help-section-title {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 36px;
}

.help-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 70px;
}

.help-cat-card {
  background: #120c24;
  border: 1.5px solid rgba(168, 85, 247, 0.22);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.25s ease;
  cursor: pointer;
}

.help-cat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 85, 247, 0.5);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(124, 58, 237, 0.18);
}

.help-cat-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.25), rgba(147, 51, 234, 0.15));
  border: 1px solid rgba(168, 85, 247, 0.35);
  color: #c084fc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.help-cat-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.help-cat-card p {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 18px;
}

.help-cat-count {
  font-size: 0.82rem;
  font-weight: 700;
  color: #c084fc;
}

/* FAQ Accordion */
.help-faq-section {
  max-width: 860px;
  margin: 0 auto 70px;
}

.help-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.help-faq-item {
  background: #120c24;
  border: 1px solid rgba(168, 85, 247, 0.22);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.help-faq-item[open] {
  border-color: rgba(168, 85, 247, 0.45);
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.12);
}

.help-faq-question {
  padding: 18px 22px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.help-faq-question::-webkit-details-marker {
  display: none;
}

.help-faq-question i {
  font-size: 0.9rem;
  color: #c084fc;
  transition: transform 0.2s ease;
}

.help-faq-item[open] .help-faq-question i {
  transform: rotate(180deg);
}

.help-faq-answer {
  padding: 0 22px 20px;
  font-size: 0.92rem;
  color: #94a3b8;
  line-height: 1.7;
}

.help-faq-answer strong {
  color: #ffffff;
}

/* Help CTA */
.help-contact-cta {
  background: radial-gradient(circle at 50% 0%, rgba(124, 58, 237, 0.15) 0%, rgba(18, 12, 36, 0.8) 100%);
  border: 1.5px solid rgba(168, 85, 247, 0.3);
  border-radius: 24px;
  padding: 50px 30px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(124, 58, 237, 0.1);
}

.help-cta-content h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.help-cta-content p {
  font-size: 1rem;
  color: #cbd5e1;
  margin-bottom: 26px;
}

.help-cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Our Vision Page --- */
.vision-page-wrapper {
  padding: 50px 0 90px;
}

.vision-section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.vision-section-desc {
  font-size: 1.05rem;
  color: #94a3b8;
  max-width: 650px;
  margin: 0 auto;
}

.vision-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 50px 0 80px;
}

.vision-pillar-card {
  background: #120c24;
  border: 1.5px solid rgba(168, 85, 247, 0.25);
  border-radius: 24px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.vision-pillar-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(168, 85, 247, 0.12);
  line-height: 1;
}

.vision-pillar-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.vision-pillar-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.vision-pillar-card p {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.7;
}

/* Roadmap */
.vision-roadmap-section {
  margin-bottom: 80px;
}

.roadmap-timeline {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.roadmap-timeline::before {
  content: '';
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 20px;
  width: 2px;
  background: linear-gradient(180deg, #10b981 0%, #7c3aed 50%, rgba(168, 85, 247, 0.2) 100%);
}

.roadmap-item {
  display: flex;
  gap: 24px;
  position: relative;
  padding-left: 54px;
}

.roadmap-badge {
  position: absolute;
  left: 0;
  top: 18px;
  transform: translateY(-50%);
  background: #180f30;
  border: 1.5px solid rgba(168, 85, 247, 0.35);
  color: #c084fc;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
  z-index: 2;
}

.roadmap-item.completed .roadmap-badge {
  background: rgba(16, 185, 129, 0.2);
  border-color: #10b981;
  color: #34d399;
}

.roadmap-item.active .roadmap-badge {
  background: rgba(124, 58, 237, 0.3);
  border-color: #a855f7;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.4);
}

.roadmap-card {
  background: #120c24;
  border: 1px solid rgba(168, 85, 247, 0.22);
  border-radius: 18px;
  padding: 24px 28px;
  width: 100%;
}

.roadmap-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.roadmap-card p {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 0;
}

.vision-cta-card {
  background: radial-gradient(circle at 50% 0%, rgba(124, 58, 237, 0.2) 0%, rgba(18, 12, 36, 0.9) 100%);
  border: 1.5px solid rgba(168, 85, 247, 0.35);
  border-radius: 28px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6), 0 0 35px rgba(124, 58, 237, 0.15);
}

.vision-cta-text h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.vision-cta-text p {
  font-size: 1.05rem;
  color: #cbd5e1;
  margin-bottom: 30px;
}

.vision-cta-btns {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .contact-grid-layout,
  .form-row-2col,
  .help-categories-grid,
  .vision-pillars-grid {
    grid-template-columns: 1fr;
  }
}




