/* =============================================
   ROYAL CAPITAL MARKETS — Complete Stylesheet
   ============================================= */

:root {
  --bg-1: #050A18;
  --bg-2: #080F22;
  --bg-card: #0B1630;
  --gold: #D4AF37;
  --gold-light: #F2D574;
  --gold-dark: #A68524;
  --white: #FFFFFF;
  --grey: #8892A8;
  --grey-light: #B0B8C8;
  --green: #00E396;
  --red: #FF4560;
  --font-ui: 'Space Grotesk', sans-serif;
  --font-display: 'Noto Serif', serif;
  --font-mono: 'JetBrains Mono', monospace;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-radius: 0 !important;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-ui);
  background: var(--bg-1);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; height: auto; }
svg { max-width: 100%; }
ul, ol { list-style: none; }
button { font-family: var(--font-ui); }
input, textarea { font-family: var(--font-ui); }

/* ========== LAYOUT ========== */
.wrap {
  width: min(1360px, 100%);
  margin-inline: auto;
  padding-inline: 40px;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  color: #000;
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(212,175,55,0.3);
}

.btn-line {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(212,175,55,0.45) !important;
}

.btn-line:hover {
  border-color: var(--gold) !important;
  color: var(--gold);
  background: rgba(212,175,55,0.06);
}

.btn-sm { padding: 9px 20px; font-size: 13px; }

/* ========== UTILITIES ========== */
.gold { color: var(--gold); }

.gold-text {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section { padding: 100px 0; max-width: 100%; }

.hero, .section, footer, header { max-width: 100vw; overflow-x: hidden; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
}

.section-sub {
  font-size: 16px;
  color: var(--grey-light);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 40px;
}

/* ========== LOADER ========== */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.loader-inner { text-align: center; }

.loader-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin-bottom: 36px;
}

.loader-icon {
  width: 46px;
  height: 46px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #000;
  flex-shrink: 0;
}

.loader-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
}

.loader-bar {
  width: 220px;
  height: 2px;
  background: rgba(212,175,55,0.15);
  margin: 0 auto;
}

.loader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  width: 0;
  transition: width 0.3s ease;
}

/* ========== HEADER ========== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.35s, padding 0.35s, border-bottom-color 0.35s;
  border-bottom: 1px solid transparent;
  overflow: hidden;
  max-height: 100px;
}

#site-header .logo-img {
  height: 42px;
  max-height: 42px;
  width: auto;
  display: block;
}

#site-header.scrolled {
  background: rgba(5,10,24,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 13px 0;
  border-bottom-color: rgba(212,175,55,0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

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

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #000;
}

.logo-name {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

.logo-sub {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  padding: 7px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-light);
  transition: color 0.2s;
}

.nav-link:hover { color: var(--gold); }

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid rgba(212,175,55,0.3) !important;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--grey-light);
  transition: all 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translateY(7px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translateY(-7px); }

#nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 998;
}

#nav-overlay.open { display: block; }

#nav-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: var(--bg-2);
  z-index: 999;
  transition: right 0.35s ease;
  border-left: 1px solid rgba(212,175,55,0.12) !important;
  padding: 80px 24px 40px;
  overflow-y: auto;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

#nav-drawer.open { right: 0; }

.drawer-nav {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}

.drawer-link {
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--grey-light);
  border-bottom: 1px solid rgba(255,255,255,0.05) !important;
  transition: color 0.2s;
}

.drawer-link:hover { color: var(--gold); }

.drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 75% 50%, rgba(212,175,55,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 0% 40%, rgba(212,175,55,0.04) 0%, transparent 50%),
    var(--bg-1);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,175,55,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 100% 100% at center, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 100% 100% at center, black 20%, transparent 75%);
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 110px 0 60px;
}

.hero-center {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 120px 0 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(212,175,55,0.3) !important;
  background: rgba(212,175,55,0.06);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.2vw, 66px);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 22px;
}

.hero-sub {
  font-size: 17px;
  color: var(--grey-light);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-chart-panel {
  background: var(--bg-card);
  border: 1px solid rgba(212,175,55,0.18) !important;
  padding: 24px;
  clip-path: polygon(5% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.chart-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
}

.chart-pair {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  flex: 1;
}

.chart-price {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
}

.chart-change {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  padding: 3px 8px;
}

.chart-change.up { color: var(--green); background: rgba(0,227,150,0.1); }
.chart-change.down { color: var(--red); background: rgba(255,69,96,0.1); }

.chart-body {
  height: 200px;
  background: rgba(0,0,0,0.25);
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.chart-svg { width: 100%; height: 100%; }

.chart-price-tag {
  position: absolute;
  right: 0;
  top: 8px;
  background: var(--green);
  color: #000;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
}

.chart-stats {
  display: flex;
  gap: 28px;
  margin-bottom: 20px;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.05) !important;
}

.chart-stat span:first-child {
  display: block;
  font-size: 10px;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}

.chart-stat span:last-child {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
}

.chart-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.chart-btn {
  display: block;
  padding: 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: opacity 0.2s;
  cursor: pointer;
}

.chart-btn:hover { opacity: 0.8; }

.chart-buy {
  background: rgba(0,227,150,0.12);
  border: 1px solid rgba(0,227,150,0.35) !important;
  color: var(--green);
}

.chart-sell {
  background: rgba(255,69,96,0.12);
  border: 1px solid rgba(255,69,96,0.35) !important;
  color: var(--red);
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(212,175,55,0.12) !important;
}

.hero-stat {
  padding: 30px 24px;
  border-right: 1px solid rgba(212,175,55,0.08) !important;
  background: rgba(8,15,34,0.8);
}

.hero-stat:last-child { border-right: none !important; }

.hero-stat-val {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 12px;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ========== TICKER ========== */
.ticker-bar {
  background: var(--bg-2);
  border-top: 1px solid rgba(212,175,55,0.12) !important;
  border-bottom: 1px solid rgba(212,175,55,0.12) !important;
  overflow: hidden;
  padding: 13px 0;
  position: relative;
}

.ticker-bar::before,
.ticker-bar::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.ticker-bar::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-2) 0%, transparent 100%);
}

.ticker-bar::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-2) 0%, transparent 100%);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 36s linear infinite;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,0.06) !important;
}

.ticker-sym {
  font-size: 12px;
  font-weight: 600;
  color: var(--grey-light);
}

.ticker-price {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--white);
}

.ticker-change {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
}

.ticker-change.up { color: var(--green); }
.ticker-change.down { color: var(--red); }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========== FEATURES ========== */
.features { background: var(--bg-2); }

.features-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.features-head .section-sub { margin-inline: auto; }

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

.feature-card {
  background: var(--bg-card);
  padding: 40px 32px;
  border: 1px solid rgba(255,255,255,0.05) !important;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-card:hover {
  border-color: rgba(212,175,55,0.25) !important;
  transform: translateY(-4px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.2) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--gold);
  margin-bottom: 24px;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-text {
  font-size: 14px;
  color: var(--grey-light);
  line-height: 1.72;
}

/* ========== MARKETS ========== */
#markets { background: var(--bg-1); }

.markets-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 20px;
}

.markets-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255,255,255,0.06) !important;
}

.markets-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.markets-table th {
  text-align: left;
  padding: 14px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  background: var(--bg-card);
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  white-space: nowrap;
}

.markets-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04) !important;
  font-size: 14px;
  vertical-align: middle;
}

.markets-table tbody tr:hover td {
  background: rgba(212,175,55,0.025);
}

.markets-table tbody tr:last-child td {
  border-bottom: none !important;
}

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

.asset-icon {
  width: 38px;
  height: 38px;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.15) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.asset-name { font-weight: 600; font-size: 15px; margin-bottom: 2px; }
.asset-sym { font-size: 11px; color: var(--grey); font-family: var(--font-mono); }

.price-val {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
}

.change-val {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  padding: 3px 9px;
  display: inline-block;
}

.change-val.up { color: var(--green); background: rgba(0,227,150,0.1); }
.change-val.down { color: var(--red); background: rgba(255,69,96,0.1); }

.volume-val {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--grey-light);
}

/* ========== PLATFORM ========== */
#platform { background: var(--bg-2); }

.platform-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: center;
}

.checklist { display: flex; flex-direction: column; gap: 13px; margin-bottom: 36px; }

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: 15px;
  color: var(--grey-light);
  line-height: 1.55;
}

.check-icon {
  width: 22px;
  height: 22px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.25) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--gold);
  font-size: 12px;
}

.platform-visual { position: relative; padding: 24px 24px 24px 0; }

.platform-mockup {
  background: var(--bg-card);
  border: 1px solid rgba(212,175,55,0.15) !important;
  padding: 20px;
}

.pm-header {
  display: flex;
  align-items: center;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  margin-bottom: 16px;
  overflow-x: auto;
}

.pm-tab {
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  cursor: pointer;
}

.pm-tab.active {
  background: rgba(212,175,55,0.1);
  color: var(--gold);
  border-bottom: 2px solid var(--gold) !important;
}

.pm-chart-area {
  height: 150px;
  background: rgba(0,0,0,0.3);
  margin-bottom: 16px;
  position: relative;
}

.pm-chart-area svg { width: 100%; height: 100%; }

.pm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.pm-stat {
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,0.05) !important;
  padding: 10px 12px;
}

.pm-stat-label {
  font-size: 9px;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.pm-stat-val {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
}

.float-card {
  position: absolute;
  background: var(--bg-2);
  border: 1px solid rgba(212,175,55,0.25) !important;
  padding: 12px 16px;
  min-width: 155px;
  animation: float-anim 3s ease-in-out infinite;
  z-index: 2;
}

.float-card-1 {
  bottom: -10px;
  left: -20px;
  animation-delay: 0s;
}

.float-card-2 {
  top: 4px;
  right: -20px;
  animation-delay: 1.5s;
}

.float-label {
  font-size: 10px;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.float-val {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--green);
}

.float-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  color: var(--grey);
  margin-top: 3px;
}

.float-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  flex-shrink: 0;
}

@keyframes float-anim {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ========== TESTIMONIALS ========== */
.testimonials { background: var(--bg-1); }

.testi-count {
  font-size: 13px;
  color: var(--grey);
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.testi-count::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--green);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.testi-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05) !important;
  padding: 26px 22px;
  transition: border-color 0.3s;
}

.testi-card:hover { border-color: rgba(212,175,55,0.2) !important; }

.testi-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.testi-name { font-weight: 700; font-size: 14px; margin-bottom: 3px; color: var(--white); }
.testi-meta { font-size: 11px; color: var(--grey); line-height: 1.5; }
.testi-country { opacity: 0.8; }

.testi-rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.testi-stars {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 2px;
}

.testi-date {
  font-size: 10px;
  color: var(--grey);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

.testi-text {
  font-size: 13px;
  color: rgba(176,184,200,0.85);
  line-height: 1.75;
  margin-bottom: 16px;
  font-style: italic;
}

.testi-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.testi-verified {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.testi-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(212,175,55,0.5);
  background: rgba(212,175,55,0.06);
  border: 1px solid rgba(212,175,55,0.15) !important;
  padding: 2px 8px;
}

/* ========== AWARDS PREMIUM ========== */
.awards { background: var(--bg-2); position: relative; overflow: hidden; }

.awards-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}

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

.aw-card {
  background: var(--bg-card);
  border: 1px solid rgba(212,175,55,0.12) !important;
  padding: 38px 24px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s;
}

.aw-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold), var(--gold-dark));
  background-size: 200% 100%;
  animation: aw-bar 4s linear infinite;
}

@keyframes aw-bar {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

.aw-sweep {
  position: absolute;
  top: 0; left: -50%;
  width: 35%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.05), transparent);
  animation: aw-sweep 6s linear infinite;
  pointer-events: none;
}

@keyframes aw-sweep {
  0%   { left: -35%; }
  100% { left: 135%; }
}

.aw-card:hover {
  border-color: rgba(212,175,55,0.45) !important;
  transform: translateY(-8px);
  box-shadow: 0 28px 64px rgba(212,175,55,0.12), 0 0 0 1px rgba(212,175,55,0.18);
}

.aw-year-bg {
  position: absolute;
  bottom: -12px; right: -6px;
  font-family: var(--font-mono);
  font-size: 80px;
  font-weight: 700;
  color: rgba(212,175,55,0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -3px;
}

.aw-badge {
  font-size: 44px;
  margin-bottom: 22px;
  display: block;
  filter: drop-shadow(0 0 16px rgba(212,175,55,0.45));
  position: relative;
  z-index: 1;
}

.aw-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.aw-org {
  font-size: 10px;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.aw-tag {
  display: inline-block;
  padding: 3px 12px;
  border: 1px solid rgba(212,175,55,0.25) !important;
  background: rgba(212,175,55,0.06);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}

/* ========== MEDIA ========== */
#media-section { background: var(--bg-1); }

.media-head {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 52px;
}

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

.media-card {
  background: var(--bg-card);
  border: 1px solid rgba(212,175,55,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 28px;
  min-height: 140px;
  transition: border-color 0.3s, background 0.3s;
  cursor: default;
}

.media-card:hover {
  border-color: rgba(212,175,55,0.35);
  background: rgba(212,175,55,0.04);
}

.media-card img {
  max-height: 72px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.6;
  transition: opacity 0.3s;
}

.media-card:hover img { opacity: 0.9; }

/* ========== PAYMENTS REDESIGN ========== */
.payments { background: var(--bg-2); }

.payments-head {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 52px;
}

.pay-section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.pay-section-label::before {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(212,175,55,0.15);
}

.pay-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(212,175,55,0.15);
}

.pay-methods-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}

.pay-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 22px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06) !important;
  min-width: 100px;
  transition: border-color 0.25s, transform 0.25s;
  cursor: default;
  flex: 1;
  max-width: 120px;
}

.pay-method:hover {
  border-color: rgba(212,175,55,0.25) !important;
  transform: translateY(-3px);
}

.pay-logo-slot {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: opacity 0.25s;
}

.pay-method:hover .pay-logo-slot { opacity: 1; }

.pay-logo-slot img,
.pay-logo-slot svg { width: 36px; height: 36px; object-fit: contain; }

.pay-logo-slot i {
  font-size: 28px;
  color: var(--gold);
}

.pay-method-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--grey-light);
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 820px) {
  .awards-row { grid-template-columns: repeat(2, 1fr); }
  .media-cards-row { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 540px) {
  .awards-row { grid-template-columns: 1fr 1fr; gap: 10px; }
  .media-cards-row { grid-template-columns: repeat(2, 1fr); }
  .pay-method { min-width: 80px; padding: 14px 16px; }
}

/* ========== MEDIA ========== */
#media-section { background: var(--bg-1); }

.media-head {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 48px;
}

.media-row {
  display: flex;
  border: 1px solid rgba(212,175,55,0.1) !important;
  background: var(--bg-card);
  overflow: hidden;
}

.media-item {
  flex: 1;
  padding: 36px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.05) !important;
  transition: background 0.3s;
  cursor: default;
}

.media-item:last-child { border-right: none !important; }
.media-item:hover { background: rgba(212,175,55,0.04); }

.media-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.28);
  transition: color 0.3s;
  white-space: nowrap;
}

.media-item:hover .media-name { color: rgba(255,255,255,0.6); }

/* ========== PAYMENTS ========== */
.payments { background: var(--bg-2); }

.payments-head {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 52px;
}

.payments-group { margin-bottom: 28px; }
.payments-group:last-child { margin-bottom: 0; }

.payments-group-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.payments-group-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.06);
}

.pay-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pay-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06) !important;
  transition: border-color 0.3s, transform 0.2s;
  cursor: default;
}

.pay-card:hover {
  border-color: rgba(212,175,55,0.2) !important;
  transform: translateY(-2px);
}

.pay-icon { font-size: 20px; color: var(--gold); }
.pay-name { font-size: 14px; font-weight: 600; }

/* ========== CRYPTO ========== */
#crypto { background: var(--bg-1); }

.crypto-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.crypto-list { display: flex; flex-direction: column; gap: 2px; }

.crypto-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05) !important;
  transition: border-color 0.3s;
}

.crypto-row:hover { border-color: rgba(212,175,55,0.2) !important; }

.crypto-icon {
  width: 38px;
  height: 38px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.15) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.crypto-info { flex: 1; }
.crypto-name { font-weight: 600; font-size: 14px; margin-bottom: 1px; }
.crypto-sym { font-family: var(--font-mono); font-size: 10px; color: var(--grey); }

.crypto-spark { display: block; width: 80px; flex-shrink: 0; }

.crypto-nums { text-align: right; flex-shrink: 0; }

.crypto-price {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.crypto-change {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
}

.crypto-change.up { color: var(--green); }
.crypto-change.down { color: var(--red); }

/* ========== BRAND STORY ========== */
#brand-story { background: var(--bg-2); }

.brand-quote {
  text-align: center;
  padding: 60px 48px;
  background: var(--bg-card);
  border: 1px solid rgba(212,175,55,0.1) !important;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.brand-quote-mark {
  position: absolute;
  top: -10px;
  left: 32px;
  font-family: var(--font-display);
  font-size: 140px;
  color: rgba(212,175,55,0.08);
  line-height: 1;
  user-select: none;
}

.brand-quote-text {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.8vw, 32px);
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.45;
  max-width: 820px;
  margin: 0 auto 20px;
  position: relative;
}

.brand-quote-author {
  font-size: 12px;
  color: var(--grey);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 72px;
}

.brand-bullets { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }

.brand-bullet { display: flex; align-items: flex-start; gap: 14px; }

.bullet-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 7px;
}

.brand-bullet p { font-size: 14px; color: var(--grey-light); line-height: 1.65; }

.compare-wrap {
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 420px;
}

.compare-table th {
  padding: 13px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  border-bottom: 2px solid rgba(212,175,55,0.2) !important;
  white-space: nowrap;
}

.compare-table th:first-child { text-align: left; color: var(--grey); }

.compare-table th.col-rcm {
  color: var(--gold);
  background: rgba(212,175,55,0.05);
}

.compare-table td {
  padding: 11px 14px;
  font-size: 13px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.04) !important;
  color: var(--grey);
}

.compare-table td:first-child { text-align: left; color: var(--grey-light); font-size: 13px; }
.compare-table td.col-rcm { background: rgba(212,175,55,0.04); color: var(--gold-light); font-weight: 600; }

.ci-yes { color: var(--green); font-size: 16px; }
.ci-no { color: var(--red); font-size: 16px; }
.ci-part { color: var(--grey); font-size: 12px; }

.brand-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.1) !important;
}

.brand-stat {
  background: var(--bg-card);
  padding: 32px 20px;
  text-align: center;
}

.brand-stat-val {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
}

.brand-stat-label {
  font-size: 12px;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ========== MOBILE APP ========== */
#mobile-app { background: var(--bg-1); }

.mobile-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.mobile-feats { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }

.mobile-feat {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 15px;
  color: var(--grey-light);
}

.mfeat-dot { width: 8px; height: 8px; background: var(--gold); flex-shrink: 0; }

.mobile-signup { display: flex; max-width: 420px; }

.mobile-signup input {
  flex: 1;
  padding: 13px 16px;
  background: var(--bg-card);
  border: 1px solid rgba(212,175,55,0.2) !important;
  border-right: none !important;
  color: var(--white);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.mobile-signup input::placeholder { color: var(--grey); }
.mobile-signup input:focus { border-color: rgba(212,175,55,0.5) !important; }

.phone-wrap {
  display: flex;
  justify-content: center;
}

.phone-outer {
  width: 255px;
  background: var(--bg-card);
  border: 2px solid var(--gold) !important;
  position: relative;
  overflow: hidden;
}

.phone-notch {
  width: 80px;
  height: 22px;
  background: var(--bg-1);
  margin: 0 auto;
}

.phone-screen {
  background: var(--bg-2);
  padding: 14px 14px 20px;
}

.phone-balance-area {
  text-align: center;
  padding: 16px 0 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  margin-bottom: 14px;
}

.phone-bal-label {
  font-size: 9px;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.phone-bal-val {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
}

.phone-bal-change {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--green);
  margin-top: 2px;
}

.phone-chart {
  height: 100px;
  background: rgba(0,0,0,0.2);
  margin-bottom: 14px;
  position: relative;
}

.phone-chart svg { width: 100%; height: 100%; }

.phone-asset-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04) !important;
}

.phone-asset-row:last-of-type { border-bottom: none !important; }

.phone-asset-name { font-size: 12px; font-weight: 600; }
.phone-asset-val { font-family: var(--font-mono); font-size: 11px; }

.phone-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
}

.phone-btn {
  padding: 9px;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.phone-btn-buy {
  background: rgba(0,227,150,0.12);
  border: 1px solid rgba(0,227,150,0.35) !important;
  color: var(--green);
}

.phone-btn-sell {
  background: rgba(255,69,96,0.12);
  border: 1px solid rgba(255,69,96,0.35) !important;
  color: var(--red);
}

/* ========== TOKEN ========== */
#token { background: var(--bg-2); position: relative; overflow: hidden; }

.token-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 65% at 80% 50%, rgba(212,175,55,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.token-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.token-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(212,175,55,0.08);
  margin-bottom: 32px;
}

.token-stat {
  background: var(--bg-card);
  padding: 18px 20px;
}

.token-stat-label {
  font-size: 10px;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 5px;
}

.token-stat-val {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 600;
  color: var(--gold-light);
}

.token-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }

.token-disclaimer {
  font-size: 11px;
  color: var(--grey);
  line-height: 1.65;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.06) !important;
  background: rgba(255,255,255,0.02);
}

.token-visual { display: flex; flex-direction: column; align-items: center; gap: 28px; margin-top: -40px; }

.hex-wrap { position: relative; width: 260px; height: 260px; }

.hex-shape {
  width: 200px;
  height: 180px;
  background: linear-gradient(135deg, rgba(212,175,55,0.18) 0%, rgba(212,175,55,0.04) 100%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hex-inner { text-align: center; }

.hex-symbol {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}

.hex-name {
  font-size: 10px;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.token-badge-row { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }

.token-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border: 1px solid rgba(212,175,55,0.25) !important;
  background: rgba(212,175,55,0.06);
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
}

/* ========== BLOG ========== */
#blog { background: var(--bg-1); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05) !important;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: rgba(212,175,55,0.2) !important;
  transform: translateY(-4px);
}

.blog-card-body { padding: 30px 26px 22px; flex: 1; }

.blog-icon { font-size: 30px; margin-bottom: 14px; display: block; }

.blog-tag {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.2) !important;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.blog-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
}

.blog-excerpt { font-size: 13px; color: var(--grey-light); line-height: 1.68; }

.blog-card-foot {
  padding: 16px 26px;
  border-top: 1px solid rgba(255,255,255,0.05) !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-time {
  font-size: 11px;
  color: var(--grey);
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}

.blog-more:hover { gap: 8px; }

/* ========== CTA ========== */
.cta-section {
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 80% at center, rgba(212,175,55,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 100px 0;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 54px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 18px;
}

.cta-sub {
  font-size: 17px;
  color: var(--grey-light);
  margin-bottom: 40px;
  line-height: 1.72;
}

.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ========== FOOTER ========== */
.site-footer {
  background: var(--bg-1);
  border-top: 1px solid rgba(212,175,55,0.1) !important;
}

.footer-top {
  padding: 72px 0 56px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand-desc {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.72;
  margin-top: 16px;
  margin-bottom: 24px;
  max-width: 280px;
}

.social-row { display: flex; gap: 8px; }

.social-btn {
  width: 36px;
  height: 36px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--grey);
  transition: color 0.2s, border-color 0.2s;
}

.social-btn:hover {
  color: var(--gold);
  border-color: rgba(212,175,55,0.3) !important;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(212,175,55,0.12) !important;
}

.footer-links { display: flex; flex-direction: column; gap: 9px; }

.footer-lnk {
  font-size: 14px;
  color: var(--grey);
  transition: color 0.2s;
}

.footer-lnk:hover { color: var(--gold); }

.footer-bottom {
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.05) !important;
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-copy { font-size: 13px; color: var(--grey); }

.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }

.footer-legal-lnk {
  font-size: 13px;
  color: var(--grey);
  transition: color 0.2s;
}

.footer-legal-lnk:hover { color: var(--gold); }

.footer-risk {
  font-size: 11px;
  color: rgba(136,146,168,0.5);
  line-height: 1.65;
}

/* ========== ANIMATIONS ========== */
.anim-fade { opacity: 0; transition: opacity 0.65s ease; }
.anim-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.anim-left { opacity: 0; transform: translateX(-28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.anim-right { opacity: 0; transform: translateX(28px); transition: opacity 0.65s ease, transform 0.65s ease; }

.anim-fade.visible,
.anim-up.visible,
.anim-left.visible,
.anim-right.visible { opacity: 1; transform: none; }

.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }

/* ========== RESPONSIVE ========== */

/* --- Tablet landscape --- */
@media (max-width: 1100px) {
  .platform-inner { grid-template-columns: 1fr; gap: 40px; }
  .crypto-inner, .mobile-inner, .token-inner, .brand-cols { grid-template-columns: 1fr; gap: 48px; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .float-card-1 { position: static; margin-top: 14px; }
  .float-card-2 { display: none; }
  .platform-visual { padding: 0; }
  .crypto-card-mid { margin-left: 24px; }
}

/* --- Tablet portrait --- */
@media (max-width: 820px) {
  .wrap { padding-inline: 20px; }
  .section { padding: 60px 0; }

  /* Header — logo left, toggle right */
  .header-nav, .header-actions { display: none; }
  .nav-toggle { display: flex; width: 48px; height: 48px; }
  .nav-toggle span { width: 24px; }
  #site-header { padding: 14px 0; }
  .logo-img { height: 36px; max-height: 36px; }
  #site-header { max-height: 80px; }

  /* Hero — auto height, shows ticker + features below fold */
  .hero { min-height: auto !important; }

  .hero-2col {
    grid-template-columns: 1fr;
    padding: 8px 0 40px;
    gap: 0;
  }

  .hero-visual { display: none !important; }

  .hero-2col .anim-left,
  .hero-2col .anim-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .hero-main-title { font-size: clamp(80px, 22vw, 110px) !important; line-height: 0.98 !important; }
  .hero > div[style*="justify-content:center"] { justify-content: flex-start !important; padding-top: 12px; }
  .hero-main-sub { font-size: 17px !important; max-width: 100% !important; }
  .hero-btns .btn { padding: 18px 32px !important; font-size: 17px !important; width: 100%; justify-content: center; }
  .hero-btns { flex-direction: column; gap: 12px; }
  .hero-stats-row { display: none; }

  .hero-main-title { font-size: 36px !important; line-height: 1.08; }
  .hero-main-sub { font-size: 15px !important; max-width: 80% !important; }
  .hero-stats-row { gap: 20px; margin-top: 24px; padding-top: 20px; flex-wrap: wrap; }
  .hero-stat-box h3 { font-size: 24px; }
  .hero-stat-box p { font-size: 10px; }

  /* Sections */
  .section-title { font-size: 28px; }
  .features-grid, .blog-grid { grid-template-columns: 1fr; }
  .brand-stats { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .markets-table th, .markets-table td { padding: 11px 12px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }

  /* Features — left align */
  .fc-head { text-align: left !important; margin-inline: 0 !important; }
  .fc-head .section-eyebrow { justify-content: flex-start !important; }
  .fc-head .gold-line-center { margin-left: 0 !important; margin-right: auto !important; background: linear-gradient(90deg, var(--gold), transparent) !important; }
  .fc-head .section-sub { text-align: left !important; margin-inline: 0 !important; }
}

/* --- Mobile --- */
@media (max-width: 540px) {
  .wrap { padding-inline: 14px; }
  .section { padding: 48px 0; }

  /* Header */
  .logo-img { height: 30px; max-height: 30px; }
  #site-header { padding: 10px 0; max-height: 70px; }
  #nav-drawer { width: 100%; right: -100%; }

  /* Hero — single col */
  .hero-2col { padding: 82px 0 48px; }

  .hero-main-title { font-size: 30px !important; }
  .hero-main-sub { font-size: 13px !important; max-width: 100% !important; }
  .hero-btns { flex-direction: column; gap: 9px; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-stats-row { gap: 14px; }
  .hero-stat-box h3 { font-size: 20px; }

  /* General */
  .section-title { font-size: 24px; }
  .section-sub { font-size: 14px; }
  .btn { padding: 11px 20px; font-size: 13px; }

  /* Sections */
  .testi-grid { grid-template-columns: 1fr; }
  .awards-row { grid-template-columns: 1fr 1fr; gap: 10px; }
  .token-stats { grid-template-columns: 1fr 1fr; }
  .token-inner { grid-template-columns: 1fr; }
  .markets-table { min-width: 560px; }
  .markets-table th, .markets-table td { padding: 9px 10px; font-size: 12px; }

  /* CTA */
  .cta-title { font-size: 26px; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { width: 100%; justify-content: center; }

  /* Mobile signup */
  .mobile-signup { flex-direction: column; }
  .mobile-signup input { border-right: 1px solid rgba(212,175,55,0.2) !important; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-legal { flex-wrap: wrap; gap: 12px; }
  .brand-stats { grid-template-columns: 1fr 1fr; }
  .brand-quote { padding: 32px 18px; }
  .brand-quote-text { font-size: 17px; }
  .compare-table th, .compare-table td { padding: 7px 8px; font-size: 11px; }
  .ca { width: 80px; height: 80px; }
  .media-cards-row { grid-template-columns: repeat(2, 1fr); }
}

/* ========== HERO BG IMAGE ========== */
.hero-bg-img {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(5,10,24,0.78), rgba(5,10,24,0.92)),
    url('https://images.unsplash.com/photo-1611974765270-ca12586343bb?q=80&w=1920&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 70% at 75% 45%, rgba(212,175,55,0.10) 0%, transparent 65%),
    radial-gradient(ellipse 35% 45% at 20% 65%, rgba(212,175,55,0.05) 0%, transparent 55%),
    radial-gradient(ellipse 50% 35% at 50% 105%, rgba(212,175,55,0.06) 0%, transparent 60%);
}

.hero-glow-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

/* ========== HERO TITLE / BTNS aliases ========== */
.hero-main-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.2vw, 68px);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 22px;
}

.hero-main-sub {
  font-size: 18px;
  color: var(--grey-light);
  line-height: 1.72;
  max-width: 560px;
  margin-bottom: 34px;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ========== HERO 2-COL ========== */
.hero-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 130px 0 80px;
  position: relative;
}

/* ========== HERO STATS ROW (template style) ========== */
.hero-stats-row {
  display: flex;
  gap: 48px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1) !important;
}

.hero-stat-box h3 {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}

.hero-stat-box p {
  font-size: 11px;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}

/* ========== CRYPTO CARDS (3D floating) ========== */
.hero-visual { position: relative; }

.crypto-card {
  background: rgba(8,15,34,0.85);
  border: 1px solid rgba(212,175,55,0.22) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 22px 26px;
  margin-bottom: 16px;
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  box-shadow: 20px 20px 50px rgba(0,0,0,0.55);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.crypto-card:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
  box-shadow: 8px 8px 30px rgba(0,0,0,0.35);
}

.crypto-card-mid {
  margin-left: 36px;
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) translateY(-18px);
}

.crypto-card-mid:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-18px);
}

.crypto-card-last { margin-top: -12px; }

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

.cc-coin { display: flex; align-items: center; gap: 14px; }

.cc-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.cc-asset-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}

.cc-row {
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.cc-chart {
  margin-top: 14px;
  height: 38px;
  overflow: hidden;
}

.cc-chart-svg { width: 100%; height: 100%; display: block; }

.cc-name h4 { font-size: 16px; font-weight: 600; margin-bottom: 2px; }
.cc-name span { font-size: 11px; color: var(--grey); font-family: var(--font-mono); }

.cc-price { text-align: right; }
.cc-price-val {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  display: block;
  margin-bottom: 3px;
}
.cc-price-chg { font-family: var(--font-mono); font-size: 12px; font-weight: 600; }

/* ========== CORNER ACCENT LINES (PDF visual style) ========== */
.ca {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  width: 180px;
  height: 180px;
  overflow: hidden;
}
.ca-tl { top: 0; left: 0; }
.ca-tr { top: 0; right: 0; }
.ca-bl { bottom: 0; left: 0; }
.ca-br { bottom: 0; right: 0; }

/* ========== GOLD SECTION DIVIDER ========== */
.gold-line {
  display: block;
  width: 44px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 12px 0 20px;
}
.gold-line-center {
  display: block;
  width: 44px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 12px auto 20px;
}

/* ========== LOGO IMAGE ========== */
.logo-img { height: 38px; width: auto; max-height: 38px; display: block; }
.loader-logo-img { height: 54px; width: auto; }

/* ========== RCM WATERMARK IMAGE ========== */
.rcm-wm-img {
  position: absolute;
  pointer-events: none;
  user-select: none;
  opacity: 0.05;
  z-index: 0;
}

/* ========== ITALIC FEATURE TITLE ========== */
.feature-title { font-style: italic; }

/* ========== DETAILED PLATFORM MOCKUP (PDF-matched) ========== */
.rcm-platform {
  background: #07102a;
  border: 1px solid rgba(212,175,55,0.18) !important;
  overflow: hidden;
  font-size: 11px;
  position: relative;
}

.rp-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  background: #040d1e;
  border-bottom: 1px solid rgba(212,175,55,0.1) !important;
}

.rp-logo { display: flex; align-items: center; gap: 8px; }
.rp-logo-img { height: 20px; width: auto; }
.rp-logo-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.rp-bal-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.rp-bal-label { font-size: 9px; color: var(--grey); text-transform: uppercase; letter-spacing: 0.08em; }
.rp-bal-val { font-family: var(--font-mono); font-size: 14px; font-weight: 700; color: var(--white); }

.rp-deposit-btn {
  padding: 5px 12px;
  background: var(--gold);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.rp-body {
  display: grid;
  grid-template-columns: 1fr 155px;
}

.rp-chart-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px 6px;
  border-bottom: 1px solid rgba(255,255,255,0.05) !important;
}

.rp-pair-name { font-family: var(--font-mono); font-size: 12px; font-weight: 700; }
.rp-pair-label { font-size: 9px; color: var(--grey); margin-left: 2px; }

.rp-time-row { display: flex; gap: 1px; margin-left: auto; }
.rp-tbtn {
  padding: 2px 6px;
  font-size: 9px;
  color: var(--grey);
  cursor: pointer;
}
.rp-tbtn.act {
  background: rgba(212,175,55,0.12);
  color: var(--gold);
}

.rp-chart-area {
  height: 150px;
  background: rgba(0,0,0,0.2);
  position: relative;
}
.rp-chart-area svg { width: 100%; height: 100%; }

.rp-positions-area { border-top: 1px solid rgba(255,255,255,0.05) !important; }
.rp-pos-title {
  padding: 6px 12px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: rgba(212,175,55,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04) !important;
}

.rp-pos-table { width: 100%; border-collapse: collapse; }
.rp-pos-table th {
  padding: 4px 8px;
  font-size: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--grey);
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.04) !important;
  background: rgba(0,0,0,0.1);
  white-space: nowrap;
}
.rp-pos-table td {
  padding: 5px 8px;
  font-family: var(--font-mono);
  font-size: 9px;
  border-bottom: 1px solid rgba(255,255,255,0.03) !important;
  white-space: nowrap;
}

.rp-buy-tag { color: var(--green); font-weight: 700; }
.rp-sell-tag { color: var(--red); font-weight: 700; }
.rp-pnl-pos { color: var(--green); }
.rp-open-badge {
  padding: 2px 5px;
  background: rgba(0,227,150,0.1);
  color: var(--green);
  font-size: 8px;
}

.rp-right-panel {
  border-left: 1px solid rgba(255,255,255,0.05) !important;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.rp-price-box {
  padding: 10px 10px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.05) !important;
  flex-shrink: 0;
}

.rp-price-sym { font-family: var(--font-mono); font-size: 11px; font-weight: 700; margin-bottom: 1px; }
.rp-price-desc { font-size: 8px; color: var(--grey); margin-bottom: 6px; }
.rp-price-num { font-family: var(--font-mono); font-size: 17px; font-weight: 700; margin-bottom: 2px; }
.rp-price-chg-down { font-family: var(--font-mono); font-size: 9px; color: var(--red); margin-bottom: 8px; }

.rp-tp-sl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-bottom: 7px;
}

.rp-field-label { font-size: 7px; color: var(--grey); text-transform: uppercase; margin-bottom: 2px; letter-spacing: 0.08em; }
.rp-field-val { font-family: var(--font-mono); font-size: 9px; }

.rp-bs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.rp-bs-buy {
  padding: 7px 4px;
  text-align: center;
  background: rgba(0,227,150,0.12);
  border: 1px solid rgba(0,227,150,0.3) !important;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--green);
  cursor: pointer;
}
.rp-bs-buy span { display: block; font-family: var(--font-mono); font-size: 9px; margin-top: 1px; }

.rp-bs-sell {
  padding: 7px 4px;
  text-align: center;
  background: rgba(255,69,96,0.12);
  border: 1px solid rgba(255,69,96,0.3) !important;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--red);
  cursor: pointer;
}
.rp-bs-sell span { display: block; font-family: var(--font-mono); font-size: 9px; margin-top: 1px; }

.rp-watchlist {
  padding: 8px;
  flex: 1;
  overflow: hidden;
}
.rp-wl-title {
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 6px;
}
.rp-wl-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03) !important;
}
.rp-wl-row:last-child { border-bottom: none !important; }
.rp-wl-sym { font-size: 9px; font-weight: 600; }
.rp-wl-price { font-family: var(--font-mono); font-size: 9px; color: var(--grey-light); }
.rp-wl-chg { font-family: var(--font-mono); font-size: 8px; }
.rp-wl-chg.up { color: var(--green); }
.rp-wl-chg.dn { color: var(--red); }
