:root {
  --gold:       #C9A96E;
  --gold-d:     #b8935a;
  --gold-l:     #dfc08a;
  --gold-s:     rgba(201,169,110,0.12);
  --gold-b:     rgba(201,169,110,0.25);
  --gold-glow:  rgba(201,169,110,0.20);

  /* backgrounds */
  --bg-dark:    #0d0d0d;
  --bg-dark2:   #120e08;
  --bg-light:   #f8f7f4;
  --bg-light2:  #ffffff;
  --bg-light3:  #f2f0eb;
  --surf-dark:  rgba(18,14,8,0.95);
  --surf-light: rgba(255,255,255,0.92);

  /* text on dark */
  --txt-dark:   rgba(255,255,255,0.82);
  --txt-muted-dark: rgba(255,255,255,0.45);

  /* text on light */
  --txt-light:  #2a2420;
  --txt-muted-light: #7a6e65;
}

/* ────────────────────────────────────────────────────────────────────────
   1. RESET & BASE
   ──────────────────────────────────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
               Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
body { background-color: #0d0d0d; color: #fff; overflow-x: hidden; }
a    { text-decoration: none !important; }

/* ────────────────────────────────────────────────────────────────────────
   2. RSL LOGO COMPONENT
   ──────────────────────────────────────────────────────────────────────── */
.rsl-logo {
  display: inline-flex; align-items: center; gap: 11px;
  text-decoration: none !important; flex-shrink: 0;
  transition: opacity 0.2s ease;
}
.rsl-logo:hover { opacity: 0.85; }

.rsl-logo__ring {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  background: linear-gradient(135deg, #C9A96E 0%, #b8935a 100%);
  box-shadow: 0 0 0 2px rgba(201,169,110,0.25), 0 4px 14px rgba(201,169,110,0.30);
  transition: box-shadow 0.3s ease;
}
.rsl-logo:hover .rsl-logo__ring {
  box-shadow: 0 0 0 2px rgba(201,169,110,0.55), 0 6px 20px rgba(201,169,110,0.45);
}
.rsl-logo__ring--lg { width: 48px; height: 48px; }

.rsl-logo__img {
  width: 62%; height: 62%;
  object-fit: contain; border-radius: 50%;
  filter: brightness(0) invert(1); display: block;
}

.rsl-logo__wordmark { display: flex; flex-direction: column; line-height: 1; gap: 2px; }
.rsl-logo__name {
  font-size: 17px; font-weight: 800; letter-spacing: -0.3px;
  background: linear-gradient(135deg, #C9A96E 0%, #dfc08a 50%, #b8935a 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1.1;
}
.rsl-logo__tag {
  font-size: 10px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase; line-height: 1;
}
.rsl-logo--dark .rsl-logo__tag  { color: rgba(0,0,0,0.40); }
.rsl-logo--light .rsl-logo__tag { color: rgba(255,255,255,0.40); }

/* Legacy .logo — suppress */
.logo, .logo-icon, .logo-text { display: none; }

/* ────────────────────────────────────────────────────────────────────────
   3. NAVBAR
   ──────────────────────────────────────────────────────────────────────── */
.navbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 5%; height: 68px;
  background-color: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  position: sticky; top: 0; z-index: 900;
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: #555; font-size: 15px; font-weight: 500;
  transition: color 0.2s ease; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 2px; background: #C9A96E;
  border-radius: 1px; transition: width 0.25s ease;
}
.nav-links a:hover             { color: #C9A96E; }
.nav-links a:hover::after      { width: 100%; }

.auth-buttons { display: flex; gap: 12px; align-items: center; }
.sign-in { color: #444; font-weight: 500; font-size: 15px; transition: color 0.2s ease; }
.sign-in:hover { color: #C9A96E; }
.get-started {
  background: linear-gradient(135deg, #C9A96E 0%, #b8935a 100%);
  color: #fff !important; border: none; border-radius: 22px;
  padding: 9px 22px; font-weight: 600; font-size: 14px;
  white-space: nowrap; transition: all 0.3s ease;
  box-shadow: 0 3px 12px rgba(201,169,110,0.35); display: inline-block;
}
.get-started:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,169,110,0.5); color: #fff !important; }

.menu-toggle {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px;
  background: rgba(201,169,110,0.10); border: 1px solid rgba(201,169,110,0.30);
  border-radius: 8px; cursor: pointer; padding: 0 8px; transition: background 0.2s ease;
}
.menu-toggle:hover { background: rgba(201,169,110,0.18); }
.menu-toggle span  { display: block; width: 100%; height: 2px; background: #C9A96E; border-radius: 1px; }

/* ────────────────────────────────────────────────────────────────────────
   4. MOBILE MENU
   ──────────────────────────────────────────────────────────────────────── */
.mobile-menu-overlay {
  display: none; position: fixed; top: 0; left: 0;
  width: 100%; height: 100%; background: #0d0d0d;
  z-index: 1000; flex-direction: column;
  padding: 24px 24px 40px; overflow-y: auto;
}
.mobile-menu-header {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; margin-bottom: 40px; padding-bottom: 20px;
  border-bottom: 1px solid rgba(201,169,110,0.20);
}
.close-menu {
  background: rgba(201,169,110,0.10); border: 1px solid rgba(201,169,110,0.25);
  border-radius: 8px; color: #C9A96E; font-size: 18px;
  width: 36px; height: 36px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease; position: static;
}
.close-menu:hover { background: rgba(201,169,110,0.20); }
.mobile-menu-links { display: flex; flex-direction: column; gap: 0; margin-bottom: 40px; flex: 1; }
.mobile-menu-links a {
  color: rgba(255,255,255,0.70); font-size: 18px; font-weight: 500;
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s ease; display: flex; align-items: center; gap: 10px;
}
.mobile-menu-links a::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: rgba(201,169,110,0.40); flex-shrink: 0; transition: background 0.2s ease;
}
.mobile-menu-links a:hover,
.mobile-menu-links a.active           { color: #C9A96E; }
.mobile-menu-links a:hover::before,
.mobile-menu-links a.active::before   { background: #C9A96E; }
.mobile-menu-auth {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: auto; padding-top: 24px;
  border-top: 1px solid rgba(201,169,110,0.15);
}
.mobile-menu-auth .get-started { text-align: center; border-radius: 12px; padding: 14px; font-size: 16px; }
.mobile-menu-auth .sign-in     { text-align: center; color: rgba(255,255,255,0.55); padding: 10px; font-size: 15px; }
.mobile-menu-auth .sign-in:hover { color: #C9A96E; }

/* ────────────────────────────────────────────────────────────────────────
   5. HERO — DARK (index page top)
   ──────────────────────────────────────────────────────────────────────── */
.hero {
  display: flex; background-color: #0d0d0d;
  padding: 5% 5%; gap: 40px; flex-wrap: wrap;
}
.hero-content { flex: 1; min-width: 300px; max-width: 600px; }
.hero-title {
  font-size: clamp(28px, 5vw, 48px); font-weight: 800;
  margin-bottom: 20px; line-height: 1.2; color: #fff;
}
.hero-text { color: rgba(255,255,255,0.60); margin-bottom: 30px; font-size: clamp(14px, 2vw, 16px); line-height: 1.6; }
.hero-buttons { display: flex; gap: 20px; flex-wrap: wrap; }
.hero-get-started {
  background: linear-gradient(135deg, #C9A96E 0%, #b8935a 100%);
  color: #fff !important; border: none; border-radius: 25px;
  padding: 12px 28px; font-weight: 600; font-size: 16px;
  transition: all 0.3s ease; box-shadow: 0 4px 14px rgba(201,169,110,0.35);
}
.hero-get-started:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,169,110,0.50); }
.contact-us {
  background: transparent; color: rgba(255,255,255,0.60);
  padding: 12px 25px; font-weight: 500; font-size: 16px; transition: color 0.2s ease;
}
.contact-us:hover { color: #C9A96E; }

/* Hero graphic shapes (non-index pages) */
.hero-graphic { flex: 1; position: relative; min-width: 300px; max-width: 100%; height: 400px; display: flex; justify-content: center; align-items: center; overflow: visible; }
.grid { display: grid; grid-template-columns: repeat(6,1fr); grid-template-rows: repeat(6,1fr); width: 100%; height: 100%; position: absolute; top: 0; left: 0; z-index: 1; }
.grid-line { border: 0.5px solid rgba(255,255,255,0.1); }
.shape { position: absolute; background-color: #C9A96E; border-radius: 0; z-index: 2; }
.shape-1 { width:25%;height:25%;top:0;left:0;background:linear-gradient(135deg,#C9A96E 0%,rgba(36,107,253,0.2) 100%);border-bottom-left-radius:100%; }
.shape-2 { width:16.66%;height:16.66%;top:33.33%;left:16.66%;background:#C9A96E;border-radius:50%; }
.shape-3 { width:33.33%;height:66.66%;top:16.66%;left:33.33%;background:linear-gradient(135deg,#C9A96E 0%,rgba(36,107,253,0.2) 100%); }
.shape-4 { width:33.33%;height:25%;bottom:0;left:0;background:linear-gradient(135deg,white 0%,rgba(255,255,255,0.2) 100%);border-top-left-radius:100%; }
.shape-5 { width:16.66%;height:33.33%;top:0;right:16.66%;background:linear-gradient(to bottom,white 0%,rgba(36,107,253,0.8) 100%); }
.shape-6 { width:16.66%;height:16.66%;bottom:16.66%;right:0;background-color:#C9A96E;border-radius:50%; }
.hero-mobile { display: none; }

/* ────────────────────────────────────────────────────────────────────────
   6. INDEX RSL HERO (globe SVG layout, dark)
   ──────────────────────────────────────────────────────────────────────── */
.rsl-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
  padding: 80px 60px; max-width: 1280px; margin: 0 auto;
  background: #0d0d0d;
}
.rsl-hero__eyebrow { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: #C9A96E; font-weight: 600; margin-bottom: 18px; }
.rsl-hero__title   { font-size: clamp(2rem,4vw,3.2rem); font-weight: 800; line-height: 1.15; color: #fff; margin-bottom: 22px; }
.rsl-hero__sub     { font-size: 16px; color: rgba(255,255,255,0.70); line-height: 1.7; margin-bottom: 36px; max-width: 500px; }
.rsl-hero__btns    { display: flex; gap: 14px; flex-wrap: wrap; }
.rsl-hero__visual  { display: flex; align-items: center; justify-content: center; }
.rsl-globe-svg     { width: 100%; max-width: 480px; }

.rsl-btn { display: inline-block; padding: 14px 30px; border-radius: 10px; font-weight: 700; font-size: 15px; transition: all 0.3s ease; }
.rsl-btn--gold { background: linear-gradient(135deg,#C9A96E,#b8935a); color: #0d0d0d; box-shadow: 0 6px 20px rgba(201,169,110,0.35); }
.rsl-btn--gold:hover   { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,169,110,0.5); color: #0d0d0d !important; }
.rsl-btn--outline      { border: 1px solid rgba(201,169,110,0.30); color: #C9A96E; background: rgba(201,169,110,0.10); }
.rsl-btn--outline:hover{ background: rgba(201,169,110,0.20); color: #C9A96E !important; }

/* Section eyebrow label — dark context default */
.rsl-section-label {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: #C9A96E; font-weight: 600; margin-bottom: 12px; display: block;
}
.rsl-section-label.center { text-align: center; }
h2.center, p.rsl-how__sub.center { text-align: center; }

/* eyebrow on light bg */
.rsl-on-light .rsl-section-label,
.section-light .rsl-section-label { color: #b8935a; }

/* ────────────────────────────────────────────────────────────────────────
   7. STATS BAR — LIGHT (immediately after hero)
   ──────────────────────────────────────────────────────────────────────── */
.stats-section {
  width: 100%;
  background: var(--bg-light) !important;
  border-bottom: 1px solid rgba(201,169,110,0.20);
  padding: 50px 20px;
}
.stats-container {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 30px; max-width: 1200px; margin: 0 auto;
}
.stat-box { display: flex; flex-direction: column; align-items: flex-start; }
.stat-number { font-size: 2.5rem; font-weight: 700; color: #b8935a; margin-bottom: 8px; }
.stat-label  { font-size: 1rem; color: #7a6e65; }

/* ────────────────────────────────────────────────────────────────────────
   8. ABOUT SECTION — DARK
   ──────────────────────────────────────────────────────────────────────── */
.rsl-about { padding: 80px 60px; background: #0d0d0d; }
.rsl-about__inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 70px; align-items: center; }
.rsl-shield-svg   { width: 100%; max-width: 340px; }
.rsl-about__copy h2 { font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 700; margin-bottom: 20px; color: #fff !important; line-height: 1.25; }
.rsl-about__copy p  { color: rgba(255,255,255,0.75) !important; line-height: 1.75; margin-bottom: 16px; font-size: 15px; }
.rsl-about__pills   { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.rsl-pill { background: rgba(201,169,110,0.12); border: 1px solid rgba(201,169,110,0.25); color: #C9A96E !important; padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; }

/* ────────────────────────────────────────────────────────────────────────
   9. HOW IT WORKS — LIGHT
   ──────────────────────────────────────────────────────────────────────── */
.rsl-how {
  background: var(--bg-light) !important;
  border-top: 1px solid rgba(201,169,110,0.15);
  border-bottom: 1px solid rgba(201,169,110,0.15);
  padding: 80px 60px;
}
.rsl-how__inner   { max-width: 1100px; margin: 0 auto; }
.rsl-how__inner h2 { font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 700; margin-bottom: 14px; color: var(--txt-light) !important; }
.rsl-how__sub    { color: var(--txt-muted-light) !important; margin-bottom: 50px; font-size: 15px; max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.rsl-how__steps  { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: start; }
.rsl-how__connector { font-size: 28px; color: rgba(201,169,110,0.40); padding: 50px 16px 0; text-align: center; }
.rsl-how__step   { background: #fff; border: 1px solid rgba(201,169,110,0.20); border-radius: 16px; padding: 30px 28px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.rsl-how__num    { font-size: 11px; letter-spacing: 3px; color: #b8935a !important; font-weight: 700; margin-bottom: 16px; }
.rsl-how__icon   { width: 52px; height: 52px; background: rgba(201,169,110,0.10); border: 1px solid rgba(201,169,110,0.20); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: #b8935a; margin-bottom: 18px; }
.rsl-how__step h3 { font-size: 17px; font-weight: 700; color: var(--txt-light) !important; margin-bottom: 12px; }
.rsl-how__step p  { font-size: 14px; color: var(--txt-muted-light) !important; line-height: 1.7; }

/* ────────────────────────────────────────────────────────────────────────
   10. SECURITY STRIP — DARK ACCENT
   ──────────────────────────────────────────────────────────────────────── */
.rsl-security {
  background: #120e08 !important;
  border-top: 1px solid rgba(201,169,110,0.20);
  border-bottom: 1px solid rgba(201,169,110,0.20);
  padding: 24px 60px;
}
.rsl-security__inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 16px; }
.rsl-security__item  { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.75) !important; font-size: 13px; font-weight: 600; padding: 0 8px; }
.rsl-security__item svg { stroke: #C9A96E; }
.rsl-security__divider  { width: 1px; height: 24px; background: rgba(201,169,110,0.25); }

/* ────────────────────────────────────────────────────────────────────────
   11. FEATURES — LIGHT
   ──────────────────────────────────────────────────────────────────────── */
.features-section { padding: 80px 20px; background: var(--bg-light2) !important; }
.features-container { max-width: 1200px; margin: 0 auto; display: flex; gap: 60px; }
.feature { flex: 1; display: flex; flex-direction: column; align-items: flex-start; }
.feature img { width: 48px; height: 48px; margin-bottom: 20px; }
.feature-title       { font-size: 22px; font-weight: 700; color: var(--txt-light) !important; margin-bottom: 14px; }
.feature-description { font-size: 15px; line-height: 1.7; color: var(--txt-muted-light) !important; }
.highlight           { color: #b8935a !important; }

/* ────────────────────────────────────────────────────────────────────────
   12. TRUSTED / PARTNERS — DARK
   ──────────────────────────────────────────────────────────────────────── */
.trusted-section { background: #0d0d0d !important; padding: 60px 20px; position: relative; overflow: hidden; }
.trusted-container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 1; }
.trusted-heading h2 { color: #fff !important; font-size: 32px; font-weight: 700; line-height: 1.2; margin: 0; }
.partners-container { display: flex; align-items: center; gap: 40px; flex-wrap: nowrap; }
.partner { display: flex; align-items: center; justify-content: center; }
.partner-logo { height: auto; max-width: 120px; filter: brightness(0.7) grayscale(0.4); transition: filter 0.3s ease; }
.partner-logo:hover { filter: brightness(1.1) grayscale(0); }

/* ────────────────────────────────────────────────────────────────────────
   13. USE CASES / TABS — LIGHT
   ──────────────────────────────────────────────────────────────────────── */
.using-section {
  padding: 70px 20px;
  background: var(--bg-light3) !important;
  border-top: 1px solid rgba(201,169,110,0.12);
  border-bottom: 1px solid rgba(201,169,110,0.12);
  position: relative; overflow: hidden;
}
.using-container { max-width: 1100px; margin: 0 auto; position: relative; }
.using-title { font-size: 36px; font-weight: 700; margin-bottom: 30px; color: var(--txt-light) !important; }

.tabs-content-layout { display: flex; flex-direction: column; }
.tabs-container { display: flex; gap: 12px; margin-bottom: 40px; position: relative; z-index: 2; flex-wrap: wrap; }
.tab-button {
  padding: 10px 22px; border-radius: 30px;
  border: 1px solid rgba(201,169,110,0.30);
  background: rgba(255,255,255,0.70);
  font-size: 15px; font-weight: 500; color: #7a6e65;
  cursor: pointer; transition: all 0.3s ease;
}
.tab-button:hover  { border-color: #C9A96E; color: #b8935a; background: rgba(255,255,255,0.95); }
.tab-button.active { background: #C9A96E; color: #fff; border-color: #C9A96E; font-weight: 700; }

.content-container { position: relative; width: 100%; }
.tab-content       { display: none; width: 100%; }
.tab-content.active { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.diagram-container { flex: 1; max-width: 50%; }
.diagram           { position: relative; width: 100%; aspect-ratio: 1/1; }
.diagram-background { position: absolute; top: 0; left: 0; right: 0; bottom: 0; border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,0.08); }
.content-text      { flex: 1; max-width: 50%; }
.tab-content p     { font-size: 16px; line-height: 1.7; color: var(--txt-muted-light) !important; margin-bottom: 20px; }
.learn-more        { color: #b8935a; font-weight: 600; font-size: 15px; display: inline-block; }
.learn-more:hover  { text-decoration: underline !important; }

/* ────────────────────────────────────────────────────────────────────────
   14. IMAGE SECTIONS (4 alternating)
   Section 1 — Reserve Integrity      DARK
   Section 2 — Global Settlements     LIGHT
   Section 3 — Multi-Chain Tech       DARK
   Section 4 — Enterprise             LIGHT
   ──────────────────────────────────────────────────────────────────────── */

/* Base shared styles */
.rsl-img-section        { padding: 80px 60px; }
.rsl-img-section__inner { max-width: 1200px; margin: 0 auto; display: grid; gap: 64px; align-items: center; }
.rsl-img-section__inner--imgLeft  { grid-template-columns: 1fr 1fr; }
.rsl-img-section__inner--imgRight { grid-template-columns: 1fr 1fr; }

/* Image box */
.rsl-img-section__img  { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 25px 60px rgba(0,0,0,0.22); border: 1px solid rgba(201,169,110,0.20); }
.rsl-img-section__img img { width: 100%; height: 360px; object-fit: cover; display: block; filter: brightness(0.88) saturate(0.9); transition: filter 0.4s ease; }
.rsl-img-section__img:hover img { filter: brightness(0.98) saturate(1.05); }

/* Floating badge */
.rsl-img-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(18,14,8,0.92); border: 1px solid rgba(201,169,110,0.40);
  color: #C9A96E !important; padding: 10px 16px;
  border-radius: 10px; font-size: 13px; font-weight: 700;
  display: flex; align-items: center; gap: 8px; backdrop-filter: blur(8px);
}
.rsl-img-badge svg { stroke: #C9A96E; }

/* DARK image sections (1st and 3rd) */
.rsl-img-section:not(.rsl-img-section--alt) { background: #0d0d0d; }
.rsl-img-section:not(.rsl-img-section--alt) .rsl-img-section__copy h2 { color: #fff !important; }
.rsl-img-section:not(.rsl-img-section--alt) .rsl-img-section__copy p  { color: rgba(255,255,255,0.75) !important; }
.rsl-img-section:not(.rsl-img-section--alt) .rsl-img-section__list li { color: rgba(255,255,255,0.80) !important; border-bottom-color: rgba(201,169,110,0.10); }
.rsl-img-section:not(.rsl-img-section--alt) .rsl-img-stat__num        { color: #C9A96E !important; }
.rsl-img-section:not(.rsl-img-section--alt) .rsl-img-stat__label      { color: rgba(255,255,255,0.45) !important; }
.rsl-img-section:not(.rsl-img-section--alt) .rsl-img-section__stats   { border-top-color: rgba(201,169,110,0.20); }

/* LIGHT image sections (2nd and 4th, --alt) */
.rsl-img-section--alt {
  background: var(--bg-light) !important;
  border-top: 1px solid rgba(201,169,110,0.12);
  border-bottom: 1px solid rgba(201,169,110,0.12);
}
.rsl-img-section--alt .rsl-img-section__copy h2 { color: var(--txt-light) !important; }
.rsl-img-section--alt .rsl-img-section__copy p  { color: var(--txt-muted-light) !important; }
.rsl-img-section--alt .rsl-img-section__list li {
  color: #3a3028 !important;
  border-bottom: 1px solid rgba(201,169,110,0.12);
}
.rsl-img-section--alt .rsl-img-stat__num   { color: #b8935a !important; }
.rsl-img-section--alt .rsl-img-stat__label { color: var(--txt-muted-light) !important; }
.rsl-img-section--alt .rsl-img-section__stats { border-top-color: rgba(201,169,110,0.20); }
.rsl-img-section--alt .rsl-section-label { color: #b8935a; }

/* Shared list and stat elements */
.rsl-img-section__copy h2 { font-size: clamp(1.5rem,2.8vw,2.2rem); font-weight: 800; margin-bottom: 18px; line-height: 1.2; }
.rsl-img-section__copy p  { font-size: 15px; line-height: 1.8; margin-bottom: 16px; }
.rsl-img-section__list { list-style: none; padding: 0; margin: 20px 0 0; }
.rsl-img-section__list li { display: flex; align-items: center; gap: 10px; font-size: 14px; padding: 8px 0; }
.rsl-img-section__list li:last-child { border-bottom: none !important; }
.rsl-img-section__list li svg { stroke: #C9A96E; flex-shrink: 0; }
.rsl-img-section__stats { display: flex; gap: 32px; margin-top: 28px; padding-top: 24px; }
.rsl-img-stat__num   { display: block; font-size: 28px; font-weight: 800; line-height: 1; margin-bottom: 6px; }
.rsl-img-stat__label { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.rsl-chain-badges    { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.rsl-chain {
  border: 1px solid rgba(201,169,110,0.30);
  color: #C9A96E !important; padding: 6px 14px;
  border-radius: 20px; font-size: 13px; font-weight: 600;
}
/* chain badge background adapts to context */
.rsl-img-section:not(.rsl-img-section--alt) .rsl-chain { background: rgba(201,169,110,0.10); }
.rsl-img-section--alt .rsl-chain                        { background: rgba(201,169,110,0.12); color: #b8935a !important; border-color: rgba(184,147,90,0.35); }
.rsl-chain--more { background: rgba(201,169,110,0.18) !important; }

/* Enterprise section CTA button on light bg */
.rsl-img-section--alt .rsl-btn--gold { display: inline-block; margin-top: 28px; }

/* ────────────────────────────────────────────────────────────────────────
   15. TESTIMONIALS SLIDER — DARK
   ──────────────────────────────────────────────────────────────────────── */
.rsl-testimonials { padding: 80px 60px; background: #0d0d0d; }
.rsl-testimonials__inner { max-width: 1100px; margin: 0 auto; }
.rsl-testimonials__inner h2 { font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 700; color: #fff !important; margin-bottom: 40px; }

.rsl-slider       { position: relative; overflow: hidden; }
.rsl-slider__track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.rsl-tcard {
  min-width: calc(33.333% - 16px); flex-shrink: 0;
  background: rgba(18,14,8,0.90); border: 1px solid rgba(201,169,110,0.22);
  border-radius: 16px; padding: 28px; margin-right: 24px;
  box-sizing: border-box; transition: border-color 0.3s ease;
}
.rsl-tcard:hover { border-color: rgba(201,169,110,0.55); }
.rsl-tcard__stars  { color: #C9A96E !important; font-size: 15px; margin-bottom: 16px; letter-spacing: 2px; }
.rsl-tcard__body   { font-size: 14px; color: rgba(255,255,255,0.72) !important; line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.rsl-tcard__author { display: flex; align-items: center; gap: 12px; }
.rsl-tcard__avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg,#C9A96E,#b8935a); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: #0d0d0d !important; flex-shrink: 0; }
.rsl-tcard__name   { font-size: 14px; font-weight: 700; color: #fff !important; }
.rsl-tcard__role   { font-size: 12px; color: rgba(255,255,255,0.42) !important; margin-top: 2px; }

.rsl-slider__controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 36px; }
.rsl-slider__btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(201,169,110,0.12); border: 1px solid rgba(201,169,110,0.30);
  color: #C9A96E; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
}
.rsl-slider__btn:hover    { background: rgba(201,169,110,0.25); transform: scale(1.05); }
.rsl-slider__btn:disabled { opacity: 0.3; cursor: not-allowed; transform: none; }
.rsl-slider__dots         { display: flex; gap: 8px; align-items: center; }
.rsl-slider__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(201,169,110,0.25); border: none;
  cursor: pointer; transition: all 0.3s ease; padding: 0;
}
.rsl-slider__dot--active { background: #C9A96E; width: 24px; border-radius: 4px; }

/* ────────────────────────────────────────────────────────────────────────
   16. TOKEN IMPORT — LIGHT
   ──────────────────────────────────────────────────────────────────────── */
.import-token-section { padding: 60px; background: var(--bg-light2) !important; border-top: 1px solid rgba(201,169,110,0.12); }
.import-token-content {
  max-width: 800px; margin: 0 auto; padding: 36px;
  background: #fff; border-radius: 20px;
  border: 1px solid rgba(201,169,110,0.22);
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.import-token-content h2 { font-size: 22px; color: var(--txt-light); margin-bottom: 28px; text-align: center; }
.contract-address-section { margin-bottom: 24px; }
.contract-address-section h1 { font-size: 12px; color: var(--txt-muted-light); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; }
.contract-address-wrapper { display: flex; align-items: center; gap: 12px; }
.contract-address-input { border: 1px solid rgba(201,169,110,0.25); background: var(--bg-light); padding: 12px 16px; width: 100%; border-radius: 10px; color: var(--txt-light); font-family: monospace; font-size: 13px; }
.copy-icon { cursor: pointer; color: #b8935a; font-size: 18px; transition: opacity 0.2s; }
.copy-icon:hover { opacity: 0.70; }
.import-instructions p { margin: 8px 0; font-size: 15px; color: var(--txt-muted-light); line-height: 1.65; }
.congrats-message { margin-top: 20px; font-size: 15px; color: #1a7a50; font-weight: 500; }
.image-preview-section { text-align: center; margin: 20px 0; }
.image-preview { width: 60px; height: auto; border-radius: 10px; border: 1px solid rgba(201,169,110,0.25); cursor: pointer; transition: transform 0.3s ease; }
.image-preview:hover { transform: scale(1.08); }
.explorer-link p { font-size: 14px; color: var(--txt-muted-light); margin-bottom: 4px; }
.explorer-link a { color: #b8935a; font-size: 14px; }
.explorer-link a:hover { text-decoration: underline !important; }

/* ────────────────────────────────────────────────────────────────────────
   17. MARKET DATA WIDGETS — DARK
   ──────────────────────────────────────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 40px 20px; background: #0d0d0d; }
.header { margin-bottom: 30px; }
.header h1 { font-size: 32px; font-weight: 700; color: #fff !important; }
.networks-container { display: flex; flex-direction: column; gap: 30px; }
.network-section { background: rgba(18,14,8,0.80); border: 1px solid rgba(201,169,110,0.20); border-radius: 20px; padding: 25px; width: 100%; }

/* ────────────────────────────────────────────────────────────────────────
   18. FAQs — LIGHT
   ──────────────────────────────────────────────────────────────────────── */
.faqs-container {
  max-width: 100%;
  padding: 60px;
  background: var(--bg-light2) !important;
  border-top: 1px solid rgba(201,169,110,0.12);
}
.faqs-container > * { max-width: 1200px; margin-left: auto; margin-right: auto; }
.faqs-container h2  { font-size: 42px; font-weight: 700; margin-bottom: 30px; color: var(--txt-light) !important; }
.faq-item        { border-bottom: 1px solid rgba(201,169,110,0.15); }
.faq-question    { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; cursor: pointer; }
.faq-question h3 { font-size: 18px; font-weight: 600; color: var(--txt-light) !important; margin: 0; }
.toggle-btn      { background: none; border: none; cursor: pointer; padding: 0; }
.plus-icon       { width: 24px; height: 24px; }
.faq-answer      { padding: 0 0 24px; line-height: 1.6; color: var(--txt-muted-light) !important; }
.faq-answer p    { margin-top: 0; margin-bottom: 16px; color: var(--txt-muted-light) !important; }
.faq-answer a    { color: #b8935a; }
.faq-answer a:hover { text-decoration: underline !important; }
.faq-answer ul, .faq-answer ol { padding-left: 20px; margin-bottom: 16px; }
.faq-answer li   { margin-bottom: 10px; display: flex; align-items: flex-start; color: var(--txt-muted-light) !important; }
.faq-answer li span { margin-right: 8px; font-weight: 600; color: #b8935a !important; }
.sub-desc        { flex: 1; }
.hidden          { display: none; }

/* ────────────────────────────────────────────────────────────────────────
   19. BOTTOM HERO CTA — DARK
   ──────────────────────────────────────────────────────────────────────── */
.hero-container {
  position: relative; width: 100%; min-height: 280px;
  background: #0d0d0d;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  overflow: hidden;
  border-top: 1px solid rgba(201,169,110,0.12);
  padding: 80px 24px;
}
.grid-overlay {
  position: absolute; width: 100%; height: 100%;
  background-image: linear-gradient(to right, rgba(201,169,110,0.04) 1px, transparent 1px), linear-gradient(to bottom, rgba(201,169,110,0.04) 1px, transparent 1px);
  background-size: 80px 80px; z-index: 1;
}
.blue-lines  { position: absolute; width: 100%; height: 100%; z-index: 2; }
.blue-line   { position: absolute; background-color: rgba(201,169,110,0.45); height: 2px; border-radius: 1px; }
.blue-line-1 { width: 10%; top: 30%; left: 30%; }
.blue-line-2 { width: 10%; top: 30%; right: 20%; }
.blue-line-3 { width: 10%; top: 30%; right: 35%; }
.path-lines  { position: absolute; width: 100%; height: 100%; z-index: 1; }
.curved-path { fill: none; stroke: rgba(201,169,110,0.12); stroke-width: 1; }
.hero-container .hero-content { position: relative; z-index: 3; text-align: center; padding: 20px; max-width: 100%; flex: none; }
.hero-container .hero-title   { color: white; font-size: clamp(24px,4vw,42px); font-weight: 700; margin-bottom: 30px; text-align: center; }
.get-started-btn {
  background: linear-gradient(135deg, #C9A96E 0%, #b8935a 100%);
  color: #fff; padding: 14px 36px; border: none;
  border-radius: 30px; font-size: 16px; font-weight: 700;
  cursor: pointer; transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(201,169,110,0.40);
}
.get-started-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,169,110,0.55); }

/* ────────────────────────────────────────────────────────────────────────
   20. FOOTER — DARK
   ──────────────────────────────────────────────────────────────────────── */
.footer { background: #0a0a0a; padding: 60px 40px 0; border-top: 1px solid rgba(201,169,110,0.18); }
.footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; padding-bottom: 50px; }
.footer-brand { padding-right: 20px; }
.footer-description { color: rgba(255,255,255,0.42); font-size: 14px; line-height: 1.75; margin-top: 18px; max-width: 320px; }
.footer-section h3  { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.32) !important; text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 20px; }
.footer-links       { list-style: none; padding: 0; margin: 0; }
.footer-links li    { margin-bottom: 12px; }
.footer-links a     { color: rgba(255,255,255,0.55); font-size: 14px; display: flex; align-items: center; gap: 6px; transition: color 0.2s ease; }
.footer-links a:hover { color: #C9A96E; }
.external-link-icon { opacity: 0.5; }
.footer-bottom { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 24px 0; border-top: 1px solid rgba(201,169,110,0.12); font-size: 13px; color: rgba(255,255,255,0.28); }
.back-to-top { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.38); font-size: 13px; transition: color 0.2s ease; }
.back-to-top:hover { color: #C9A96E; }
.arrow-up { display: flex; }

/* ────────────────────────────────────────────────────────────────────────
   21. RESPONSIVE BREAKPOINTS
   ──────────────────────────────────────────────────────────────────────── */
@media (min-width: 768px) {
  .networks-container { flex-direction: row; justify-content: space-between; }
  ::-webkit-scrollbar { width: 8px; background: transparent; }
  ::-webkit-scrollbar-track { background: transparent; }
  ::-webkit-scrollbar-thumb { background: linear-gradient(180deg,#C9A96E,#b8935a); border-radius: 4px; }
}
@media (min-width: 1024px) {
  .stats-container { grid-template-columns: repeat(4,1fr); }
}
@media (max-width: 1199px) {
  .footer-container { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; padding-right: 0; }
  .footer-description { max-width: 480px; }
}
@media (max-width: 992px) {
  .footer-container { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .rsl-how__steps { grid-template-columns: 1fr; }
  .rsl-how__connector { display: none; }
  .rsl-how__step { margin-bottom: 16px; }
}
@media (max-width: 900px) {
  /* Hero */
  .rsl-hero { grid-template-columns: 1fr; padding: 50px 24px; gap: 40px; }
  .rsl-hero__visual { order: -1; }
  .rsl-globe-svg { max-width: 300px; }
  /* About */
  .rsl-about { padding: 50px 24px; }
  .rsl-about__inner { grid-template-columns: 1fr; gap: 40px; }
  .rsl-shield-svg { max-width: 220px; margin: 0 auto; display: block; }
  /* How */
  .rsl-how { padding: 50px 24px; }
  /* Security */
  .rsl-security { padding: 20px 24px; }
  .rsl-security__divider { display: none; }
  /* Image sections */
  .rsl-img-section { padding: 50px 20px; }
  .rsl-img-section__inner--imgLeft,
  .rsl-img-section__inner--imgRight { grid-template-columns: 1fr; gap: 32px; }
  .rsl-img-section__inner--imgRight .rsl-img-section__img { order: -1; }
  .rsl-img-section__img img { height: 240px; }
  .rsl-img-section__stats { gap: 20px; flex-wrap: wrap; }
  /* Slider — 1 card */
  .rsl-tcard { min-width: 100% !important; margin-right: 0 !important; }
  .rsl-testimonials { padding: 50px 20px; }
  /* Token import */
  .import-token-section { padding: 30px 16px; }
  /* Features */
  .features-section { padding: 50px 20px; }
  .features-container { flex-direction: column; gap: 40px; }
  .feature { padding-bottom: 40px; }
  .feature:not(:last-child) { border-bottom: 1px solid rgba(201,169,110,0.12); }
  /* Tabs */
  .using-section { padding: 40px 20px; }
  .using-title { font-size: 28px; }
  .tabs-container { overflow-x: auto; padding-bottom: 5px; }
  .tab-button { padding: 8px 16px; font-size: 14px; white-space: nowrap; }
  .tab-content.active { flex-direction: column; gap: 30px; }
  .diagram-container, .content-text { max-width: 100%; width: 100%; }
  /* Trusted */
  .trusted-container { flex-direction: column; align-items: flex-start; gap: 30px; }
  .trusted-heading h2 { font-size: 26px; }
  .partners-container { flex-wrap: wrap; gap: 24px; }
  .partner { width: calc(50% - 15px); }
  /* Hero (non-index) */
  .hero-mobile { display: block; width: 100%; height: 250px; background-image: url('/static/assets/images/banner.webp'); background-size: cover; background-position: center; }
  .hero { flex-direction: column; padding-top: 40px; }
  .hero-content { text-align: center; max-width: 100%; }
  .hero-buttons { justify-content: center; }
  .hero-graphic { display: none; }
  /* FAQs */
  .faqs-container { padding: 40px 24px; }
  .faqs-container h2 { font-size: 30px; }
  .faq-question h3   { font-size: 16px; }
  /* Footer */
  .footer { padding: 50px 24px 0; }
  .footer-container { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { padding-right: 0; }
  .footer-description { max-width: 100%; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  /* Logo */
  .rsl-logo__ring    { width: 36px; height: 36px; }
  .rsl-logo__ring--lg { width: 40px; height: 40px; }
  .rsl-logo__name    { font-size: 15px; }
  .rsl-logo__tag     { font-size: 9px; letter-spacing: 2px; }
  /* Navbar */
  .navbar { padding: 0 5%; height: 62px; }
  .nav-links, .auth-buttons { display: none; }
  .menu-toggle { display: flex; }
  /* Stats */
  .stats-container { grid-template-columns: repeat(2,1fr); gap: 20px; }
  /* Bottom hero */
  .hero-container .hero-title { font-size: 26px; }
}

/* Tablet: 2-card slider */
@media (min-width: 601px) and (max-width: 900px) {
  .rsl-tcard { min-width: calc(50% - 12px) !important; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 26px; }
  .hero-text  { font-size: 14px; }
  .stat-number { font-size: 1.6rem; }
  .stat-label  { font-size: 0.8rem; }
  .hero-mobile { height: 200px; background-size: contain; }
  .mobile-menu-overlay { padding: 15px; }
  .mobile-menu-header  { margin-bottom: 28px; }
}

/* ────────────────────────────────────────────────────────────────────────
   22. REDUCED MOTION
   ──────────────────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}