/* =====================================================================
   URV CAPITALS - Premium Theme Layer
   Adds chrome/silver shimmer + red accent highlights on top of base CSS.
   Brand palette:
     - Red:    #E11D2E  (primary accent / CTA)
     - Silver: #C0C0C0  (secondary chrome)
     - Black:  #0A0A0A  (deep BG)
   ===================================================================== */

:root {
  --urv-red:           #E11D2E;
  --urv-red-light:     #FF4757;
  --urv-red-dark:      #B71522;
  --urv-silver:        #C0C0C0;
  --urv-silver-light:  #E5E5E5;
  --urv-silver-dark:   #8B8B8B;
  --urv-black:         #0A0A0A;
  --urv-bg-1:          #050505;
  --urv-bg-2:          #0F0F0F;
  --urv-bg-3:          #161616;
  --urv-border:        rgba(255, 255, 255, 0.06);
  --urv-border-hot:    rgba(225, 29, 46, 0.40);
  --urv-glow-red:      0 0 24px rgba(225, 29, 46, 0.35);
  --urv-glow-silver:   0 0 18px rgba(192, 192, 192, 0.25);

  --urv-gradient-red:    linear-gradient(135deg, #FF4757 0%, #E11D2E 50%, #8E0E1C 100%);
  --urv-gradient-silver: linear-gradient(135deg, #FFFFFF 0%, #C0C0C0 45%, #6E6E6E 100%);
  --urv-gradient-mixed:  linear-gradient(120deg, #E5E5E5 0%, #C0C0C0 35%, #E11D2E 100%);
}

/* ---------------------------------------------------------------------
   Body / global ambient background
   --------------------------------------------------------------------- */
body {
  background-color: var(--urv-black) !important;
  color: var(--urv-silver-light);
  background-image:
    radial-gradient(circle at 12% 8%,  rgba(225, 29, 46, 0.10) 0%, transparent 38%),
    radial-gradient(circle at 88% 92%, rgba(192, 192, 192, 0.05) 0%, transparent 42%);
  background-attachment: fixed;
}

/* ---------------------------------------------------------------------
   Chrome / silver shimmer text - for headings & gradient-text
   NOTE: must use `background-image` (not shorthand `background:`) so we
   don't reset `background-clip: text` back to `border-box`.
   --------------------------------------------------------------------- */
.gradient-text,
.urv-chrome-text {
  display: inline-block;
  background-image: var(--urv-gradient-mixed);
  background-color: transparent;
  -webkit-background-clip: text !important;
          background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}

.urv-red-text {
  color: var(--urv-red) !important;
}

.urv-silver-text {
  color: var(--urv-silver) !important;
}

/* ---------------------------------------------------------------------
   Glass cards & panels - upgraded look
   --------------------------------------------------------------------- */
.glass-panel {
  background: rgba(15, 15, 15, 0.55) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--urv-border) !important;
}

.glass-card {
  background: rgba(15, 15, 15, 0.50) !important;
  border: 1px solid var(--urv-border) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.glass-card:hover {
  border-color: var(--urv-border-hot) !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px -12px rgba(225, 29, 46, 0.30), var(--urv-glow-red);
}

/* Premium "stat" card variant for dashboard counters */
.urv-stat-card {
  position: relative;
  background: linear-gradient(160deg, rgba(255,255,255,0.04) 0%, rgba(0,0,0,0.4) 100%);
  border: 1px solid var(--urv-border);
  border-radius: 14px;
  overflow: hidden;
}
.urv-stat-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--urv-gradient-red);
  opacity: 0.85;
}
.urv-stat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(225, 29, 46, 0.10) 0%, transparent 55%);
  pointer-events: none;
}

/* ---------------------------------------------------------------------
   Sidebar links (user dashboard)
   --------------------------------------------------------------------- */
.sidebar-link {
  position: relative;
  border-radius: 10px;
}

.sidebar-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 3px;
  height: 70%;
  border-radius: 0 4px 4px 0;
  background: var(--urv-gradient-red);
  transition: transform 0.25s ease;
}

.sidebar-link:hover,
.sidebar-link.active {
  background-color: rgba(225, 29, 46, 0.10) !important;
  color: var(--urv-red) !important;
}

.sidebar-link:hover::before,
.sidebar-link.active::before {
  transform: translateY(-50%) scaleY(1);
}

/* ---------------------------------------------------------------------
   Buttons - URV CTA
   --------------------------------------------------------------------- */
.urv-btn-primary,
.btn--primary,
.btn-primary {
  background: var(--urv-gradient-red) !important;
  color: #fff !important;
  border: none !important;
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 18px -6px rgba(225, 29, 46, 0.55);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.urv-btn-primary:hover,
.btn--primary:hover,
.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 10px 26px -8px rgba(225, 29, 46, 0.75), 0 0 0 1px rgba(255, 71, 87, 0.4) inset;
}

.urv-btn-silver {
  background: var(--urv-gradient-silver) !important;
  color: #0A0A0A !important;
  border: none !important;
  font-weight: 700;
  box-shadow: 0 6px 18px -6px rgba(192, 192, 192, 0.45);
}

/* Tailwind arbitrary value `bg-[#F3BA2F]` style escapes - safety overrides
   in case any legacy hardcoded BNB-yellow class remains anywhere.        */
.bg-\[\#F3BA2F\]            { background-color: var(--urv-red) !important; }
.text-\[\#F3BA2F\]          { color: var(--urv-red) !important; }
.border-\[\#F3BA2F\]        { border-color: var(--urv-red) !important; }
.hover\:bg-\[\#d4a024\]:hover { background-color: var(--urv-red-dark) !important; }
.hover\:text-\[\#F3BA2F\]:hover { color: var(--urv-red) !important; }
.hover\:border-\[\#F3BA2F\]:hover { border-color: var(--urv-red) !important; }

/* ---------------------------------------------------------------------
   Forms - inputs & focus rings
   --------------------------------------------------------------------- */
input, select, textarea {
  background-color: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid var(--urv-border) !important;
  color: #fff;
  border-radius: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus, select:focus, textarea:focus {
  outline: none !important;
  border-color: var(--urv-red) !important;
  box-shadow: 0 0 0 3px rgba(225, 29, 46, 0.18) !important;
}

/* ---------------------------------------------------------------------
   Tables
   --------------------------------------------------------------------- */
table thead th {
  background: rgba(255, 255, 255, 0.03) !important;
  color: var(--urv-silver) !important;
  border-bottom: 1px solid var(--urv-border) !important;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.6px;
}

table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background-color 0.2s ease;
}

table tbody tr:hover {
  background-color: rgba(225, 29, 46, 0.04) !important;
}

/* ---------------------------------------------------------------------
   Brand badge + chip
   --------------------------------------------------------------------- */
.urv-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--urv-red);
  border: 1px solid rgba(225, 29, 46, 0.35);
  background: rgba(225, 29, 46, 0.08);
  border-radius: 999px;
}

.urv-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--urv-red) 50%, transparent);
  opacity: 0.6;
}

/* ---------------------------------------------------------------------
   Scrollbar
   --------------------------------------------------------------------- */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--urv-black); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--urv-gradient-red);
}

/* ---------------------------------------------------------------------
   Selection
   --------------------------------------------------------------------- */
::selection {
  background: rgba(225, 29, 46, 0.45);
  color: #fff;
}

/* =====================================================================
   PATTERN UTILITIES - Visual variety for sections & cards
   ===================================================================== */

/* Grid floor pattern (perspective grid like a trading terminal) */
.urv-grid-bg {
  background-image:
    linear-gradient(rgba(225, 29, 46, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(225, 29, 46, 0.07) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: -1px -1px;
}

.urv-grid-bg-fine {
  background-image:
    linear-gradient(rgba(192, 192, 192, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192, 192, 192, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* Dotted pattern */
.urv-dots-bg {
  background-image: radial-gradient(rgba(225, 29, 46, 0.18) 1px, transparent 1px);
  background-size: 18px 18px;
}

/* Blueprint pattern (silver lines) */
.urv-blueprint-bg {
  background-image:
    linear-gradient(rgba(192, 192, 192, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192, 192, 192, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(192, 192, 192, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192, 192, 192, 0.03) 1px, transparent 1px);
  background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
}

/* Scanline animated overlay - feels like a trading terminal */
.urv-scanline {
  position: relative;
  overflow: hidden;
}
.urv-scanline::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(225, 29, 46, 0.04) 50%,
    transparent 100%);
  background-size: 100% 8px;
  animation: urv-scan 6s linear infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes urv-scan {
  0%   { background-position: 0 -100%; }
  100% { background-position: 0 100%;  }
}

/* Angled section cuts */
.urv-section-angled-top {
  clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 100%);
}
.urv-section-angled-bottom {
  clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
}
.urv-section-angled-both {
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
}

/* Neon edge border (using gradient + mask) */
.urv-neon-edge {
  position: relative;
  background: linear-gradient(160deg, rgba(15,15,15,0.85), rgba(0,0,0,0.75));
  border: 1px solid transparent;
  border-radius: 14px;
}
.urv-neon-edge::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, #E11D2E 0%, transparent 35%, transparent 65%, #C0C0C0 100%);
  -webkit-mask:
     linear-gradient(#000 0 0) content-box,
     linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

/* Corner-cut card (modern angular look) */
.urv-corner-cut {
  clip-path: polygon(
    14px 0%,
    100% 0%,
    100% calc(100% - 14px),
    calc(100% - 14px) 100%,
    0% 100%,
    0% 14px
  );
  background: linear-gradient(160deg, rgba(20, 20, 20, 0.85) 0%, rgba(0, 0, 0, 0.55) 100%);
  border: none !important;
  position: relative;
}

/* Holographic shimmer overlay - small shimmer on hover */
.urv-holo {
  position: relative;
  overflow: hidden;
}
.urv-holo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
    transparent 0%,
    rgba(255, 71, 87, 0.06) 35%,
    rgba(192, 192, 192, 0.08) 50%,
    rgba(255, 71, 87, 0.06) 65%,
    transparent 100%);
  transform: translateX(-100%);
  transition: transform 1.2s ease;
  pointer-events: none;
}
.urv-holo:hover::before {
  transform: translateX(100%);
}

/* Stepped timeline accent rail */
.urv-rail {
  position: relative;
}
.urv-rail::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent 0%, #E11D2E 15%, #E11D2E 85%, transparent 100%);
  opacity: 0.4;
}

/* Terminal-style header bar with "fake" window dots */
.urv-terminal {
  background: rgba(8, 8, 8, 0.7);
  border: 1px solid rgba(225, 29, 46, 0.20);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.urv-terminal::before {
  content: "● ● ●";
  position: absolute;
  top: 10px;
  left: 14px;
  letter-spacing: 4px;
  font-size: 8px;
  color: rgba(225, 29, 46, 0.5);
  z-index: 3;
}
.urv-terminal-body {
  padding-top: 36px;
}

/* Side-accent panel (vertical red stripe + subtle silver shimmer) */
.urv-side-accent {
  position: relative;
  background: linear-gradient(95deg, rgba(225, 29, 46, 0.08) 0%, rgba(15, 15, 15, 0.5) 6%, rgba(15, 15, 15, 0.5) 100%);
  border: 1px solid var(--urv-border);
  border-left: 3px solid #E11D2E;
  border-radius: 0 14px 14px 0;
}

/* Numbered marker (used in timeline) */
.urv-step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  border: 2px solid #E11D2E;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  box-shadow: 0 0 18px rgba(225, 29, 46, 0.35), inset 0 0 12px rgba(225, 29, 46, 0.15);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

/* Asymmetric split feature row */
.urv-split-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .urv-split-row {
    grid-template-columns: 5fr 7fr;
  }
  .urv-split-row.reverse {
    grid-template-columns: 7fr 5fr;
  }
  .urv-split-row.reverse > :first-child {
    order: 2;
  }
}

/* Glow-pulse dot (status indicator) */
.urv-pulse-dot {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
}
.urv-pulse-dot::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid #10B981;
  animation: urv-pulse-ring 1.6s infinite;
}
@keyframes urv-pulse-ring {
  0%   { transform: scale(0.6); opacity: 1;   }
  100% { transform: scale(1.8); opacity: 0;   }
}

/* Section heading style variants */
.urv-section-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #E11D2E;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.urv-section-eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #E11D2E);
}

/* Sticky-note-style card (slight rotation) */
.urv-tilt-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.urv-tilt-card:hover {
  transform: translateY(-4px) rotate(-0.4deg);
  box-shadow: 0 18px 40px -16px rgba(225, 29, 46, 0.35);
}

/* Horizontal-scroll snap container */
.urv-hscroll {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
}
.urv-hscroll > * {
  flex: 0 0 auto;
  scroll-snap-align: start;
}
.urv-hscroll::-webkit-scrollbar { height: 4px; }
.urv-hscroll::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #2a2a2a, #E11D2E);
  border-radius: 2px;
}

/* Glow line divider */
.urv-glow-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, #E11D2E 50%, transparent);
  position: relative;
}
.urv-glow-line::after {
  content: "";
  position: absolute;
  inset: 0;
  filter: blur(4px);
  background: inherit;
}

/* Animated marquee text */
.urv-marquee {
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}
.urv-marquee-track {
  display: inline-flex;
  gap: 3rem;
  animation: urv-marquee-scroll 30s linear infinite;
}
@keyframes urv-marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =====================================================================
   NEW WEBSITE COMPONENTS - 2026 redesign
   ===================================================================== */

/* Hero stage frame - container for the right-side live preview */
.urv-stage {
  position: relative;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(20,20,20,0.65) 0%, rgba(5,5,5,0.85) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.urv-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, rgba(225,29,46,0.55), rgba(255,255,255,0.05) 40%, rgba(192,192,192,0.25) 100%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

/* Mega heading style */
.urv-mega-heading {
  font-size: clamp(2.5rem, 6vw, 5.25rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.025em;
}

/* KPI big numbers */
.urv-kpi-number {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.025em;
  background: linear-gradient(120deg, #FFFFFF 0%, #C0C0C0 60%, #8B8B8B 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Plain heavy mono code-style label */
.urv-mono {
  font-family: ui-monospace, "Cascadia Mono", "JetBrains Mono", Menlo, monospace;
  letter-spacing: -0.02em;
}

/* Logo marquee row (silver text "logos") */
.urv-logo-strip {
  display: inline-flex;
  align-items: center;
  gap: 3.5rem;
  font-family: ui-monospace, "Cascadia Mono", Menlo, monospace;
  color: rgba(192,192,192,0.55);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.urv-logo-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

/* Architecture diagram - node */
.urv-node {
  position: relative;
  padding: 1.25rem;
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(20,20,20,0.7), rgba(0,0,0,0.6));
  border: 1px solid rgba(255,255,255,0.07);
  text-align: center;
}
.urv-node.red {
  border-color: rgba(225,29,46,0.40);
  box-shadow: 0 0 22px -8px rgba(225,29,46,0.55);
}
.urv-node.silver {
  border-color: rgba(192,192,192,0.30);
  box-shadow: 0 0 22px -8px rgba(192,192,192,0.35);
}
.urv-node-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(225,29,46,0.12);
  border: 1px solid rgba(225,29,46,0.30);
  color: #E11D2E;
}
.urv-node.silver .urv-node-icon {
  background: linear-gradient(135deg, #E5E5E5, #8B8B8B);
  color: #0A0A0A;
  border: none;
}

/* SVG-less connector line (vertical / horizontal accent) */
.urv-connector-h {
  height: 2px;
  background: linear-gradient(90deg, rgba(225,29,46,0.10), rgba(225,29,46,0.65), rgba(225,29,46,0.10));
  border-radius: 1px;
}
.urv-connector-v {
  width: 2px;
  background: linear-gradient(180deg, rgba(225,29,46,0.10), rgba(225,29,46,0.65), rgba(225,29,46,0.10));
  border-radius: 1px;
  margin: 0 auto;
}

/* Strategy compare card */
.urv-strategy {
  position: relative;
  padding: 1.75rem;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(20,20,20,0.7) 0%, rgba(5,5,5,0.55) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.urv-strategy:hover {
  transform: translateY(-4px);
  border-color: rgba(225,29,46,0.40);
  box-shadow: 0 18px 40px -16px rgba(225,29,46,0.30);
}
.urv-strategy.featured {
  border-color: rgba(225,29,46,0.55);
  background: linear-gradient(180deg, rgba(40,8,12,0.8) 0%, rgba(15,5,7,0.7) 100%);
}
.urv-strategy.featured::before {
  content: "MOST POPULAR";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  padding: 3px 10px;
  background: linear-gradient(135deg, #FF4757, #E11D2E, #8E0E1C);
  color: #fff;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 12px -2px rgba(225,29,46,0.65);
}

/* FAQ accordion */
.urv-faq {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  background: rgba(15,15,15,0.55);
  overflow: hidden;
  transition: border-color 0.2s;
}
.urv-faq:hover {
  border-color: rgba(225,29,46,0.30);
}
.urv-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: #fff;
  transition: color 0.2s;
}
.urv-faq summary::-webkit-details-marker { display: none; }
.urv-faq summary::after {
  content: "+";
  font-size: 1.4rem;
  color: #E11D2E;
  transition: transform 0.3s;
  font-weight: 300;
  line-height: 1;
}
.urv-faq[open] summary::after {
  content: "−";
}
.urv-faq[open] summary {
  color: #E11D2E;
  border-bottom: 1px solid rgba(225,29,46,0.18);
}
.urv-faq-body {
  padding: 1rem 1.25rem 1.25rem;
  color: #B0B0B0;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Mega final CTA block */
.urv-mega-cta {
  position: relative;
  padding: clamp(2.5rem, 5vw, 5rem) clamp(1.5rem, 4vw, 4rem);
  border-radius: 22px;
  background:
    radial-gradient(circle at 20% 30%, rgba(225,29,46,0.25), transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(192,192,192,0.10), transparent 50%),
    linear-gradient(180deg, #0F0F0F, #050505);
  border: 1px solid rgba(225,29,46,0.20);
  overflow: hidden;
}
.urv-mega-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(225, 29, 46, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(225, 29, 46, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  opacity: 0.4;
}

/* Animated number counter dot */
.urv-tick {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
  margin-right: 6px;
  animation: urv-tick-blink 1.4s infinite;
}
@keyframes urv-tick-blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.25; }
}

/* Mini chart bar (animated) */
.urv-bar-row {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 36px;
}
.urv-bar-row > span {
  flex: 1;
  background: linear-gradient(180deg, #FF4757, #E11D2E);
  border-radius: 2px 2px 0 0;
  opacity: 0.85;
  animation: urv-bar-flicker 3s ease-in-out infinite;
}
.urv-bar-row > span:nth-child(2) { animation-delay: 0.2s; }
.urv-bar-row > span:nth-child(3) { animation-delay: 0.4s; }
.urv-bar-row > span:nth-child(4) { animation-delay: 0.6s; }
.urv-bar-row > span:nth-child(5) { animation-delay: 0.8s; }
.urv-bar-row > span:nth-child(6) { animation-delay: 1.0s; }
.urv-bar-row > span:nth-child(7) { animation-delay: 1.2s; }
@keyframes urv-bar-flicker {
  0%, 100% { transform: scaleY(0.95); }
  50%      { transform: scaleY(1.15); }
  transform-origin: bottom;
}

/* Inverse button (outlined silver) */
.urv-btn-ghost {
  background: transparent;
  color: #E5E5E5;
  border: 1px solid rgba(192,192,192,0.30);
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.urv-btn-ghost:hover {
  border-color: rgba(225,29,46,0.55);
  color: #fff;
  background: rgba(225,29,46,0.06);
}


/* =====================================================================
   DASHBOARD - extra pattern utilities (v2)
   ===================================================================== */

/* ---------- Command bar greeting (top of dashboard) ---------- */
.urv-cmd-bar {
  position: relative;
  background:
    linear-gradient(90deg, rgba(225,29,46,0.10) 0%, transparent 35%),
    rgba(10, 10, 10, 0.78);
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 3px solid var(--urv-red);
  border-radius: 6px;
  padding: 1rem 1.25rem;
  font-family: ui-monospace, "Courier New", monospace;
  overflow: hidden;
}
.urv-cmd-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: 0.6;
}
.urv-cmd-bar > * { position: relative; z-index: 1; }
.urv-cmd-prompt {
  color: var(--urv-red);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}
.urv-cmd-blink {
  display: inline-block;
  width: 8px;
  height: 14px;
  background: var(--urv-red);
  margin-left: 4px;
  vertical-align: -2px;
  animation: urv-blink-cursor 1s steps(1) infinite;
}
@keyframes urv-blink-cursor {
  0%, 50%  { opacity: 1; }
  51%, 100%{ opacity: 0; }
}

/* ---------- Cockpit card (corner brackets + cross-hair) ---------- */
.urv-cockpit {
  position: relative;
  background:
    radial-gradient(420px 240px at 50% 50%, rgba(225,29,46,0.06), transparent 70%),
    rgba(10, 10, 10, 0.70);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 1.25rem;
  overflow: hidden;
}
.urv-cockpit::before,
.urv-cockpit::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border: 2px solid var(--urv-red);
  pointer-events: none;
}
.urv-cockpit::before {
  top: 10px;
  left: 10px;
  border-right: none;
  border-bottom: none;
}
.urv-cockpit::after {
  bottom: 10px;
  right: 10px;
  border-left: none;
  border-top: none;
}
.urv-cockpit-cross {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, transparent 49.5%, rgba(225,29,46,0.10) 49.5%, rgba(225,29,46,0.10) 50.5%, transparent 50.5%),
    linear-gradient(0deg,  transparent 49.5%, rgba(225,29,46,0.06) 49.5%, rgba(225,29,46,0.06) 50.5%, transparent 50.5%);
  opacity: 0.5;
}

/* ---------- Radar background (concentric pulsing rings) ---------- */
.urv-radar-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, rgba(225,29,46,0.18) 0%, transparent 1.5%),
    radial-gradient(circle at 50% 50%, transparent 0%, rgba(225,29,46,0.06) 8%,  transparent 8.5%),
    radial-gradient(circle at 50% 50%, transparent 0%, rgba(225,29,46,0.05) 18%, transparent 18.5%),
    radial-gradient(circle at 50% 50%, transparent 0%, rgba(225,29,46,0.04) 32%, transparent 32.5%),
    radial-gradient(circle at 50% 50%, transparent 0%, rgba(192,192,192,0.04) 50%, transparent 50.5%);
  opacity: 0.5;
}
.urv-radar-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: conic-gradient(from 0deg at 50% 50%,
    rgba(225,29,46,0.18) 0deg,
    transparent 30deg,
    transparent 360deg);
  animation: urv-radar-sweep 6s linear infinite;
}
@keyframes urv-radar-sweep {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ---------- Hub circle (network center) ---------- */
.urv-hub {
  position: relative;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #1a1a1a 0%, #050505 100%);
  border: 2px solid var(--urv-red);
  box-shadow:
    0 0 0 4px rgba(225,29,46,0.10),
    0 0 18px rgba(225,29,46,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}
.urv-hub::before {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px dashed rgba(225,29,46,0.35);
  border-radius: 50%;
  animation: urv-hub-rotate 18s linear infinite;
}
@keyframes urv-hub-rotate {
  to { transform: rotate(360deg); }
}

/* ---------- Stage rail (bracket-marked progress) ---------- */
.urv-stage-rail {
  position: relative;
  height: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1px;
  overflow: visible;
}
.urv-stage-rail-fill {
  height: 100%;
  background: linear-gradient(90deg, #E11D2E 0%, #FF4757 100%);
  box-shadow: 0 0 8px rgba(225,29,46,0.5);
  position: relative;
  transition: width 0.6s ease;
}
.urv-stage-rail-fill::after {
  content: "";
  position: absolute;
  right: -4px;
  top: -3px;
  bottom: -3px;
  width: 4px;
  background: #fff;
  box-shadow: 0 0 8px #fff, 0 0 4px var(--urv-red);
}
.urv-stage-rail-mark {
  position: absolute;
  top: -6px;
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.15);
}
.urv-stage-rail-mark::after {
  content: attr(data-label);
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  font-family: ui-monospace, monospace;
  font-size: 9px;
  color: #64748b;
  white-space: nowrap;
  letter-spacing: 0.08em;
}

/* ---------- Stripe row (zebra alternating with mono indicator) ---------- */
.urv-stripe-list { display: flex; flex-direction: column; }
.urv-stripe-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 0.85rem 0.65rem 1.5rem;
  background: rgba(255, 255, 255, 0.015);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.2s ease;
}
.urv-stripe-row:nth-child(even) { background: rgba(255, 255, 255, 0.03); }
.urv-stripe-row:hover {
  background: rgba(225, 29, 46, 0.05);
  border-bottom-color: rgba(225, 29, 46, 0.2);
}
.urv-stripe-row::before {
  content: "";
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--urv-red);
  box-shadow: 0 0 6px rgba(225,29,46,0.6);
  opacity: 0.6;
}
.urv-stripe-row:hover::before { opacity: 1; transform: translateY(-50%) scale(1.4); }
.urv-stripe-amount {
  font-family: ui-monospace, "Courier New", monospace;
  font-weight: 700;
  font-size: 1.05rem;
  white-space: nowrap;
}

/* ---------- Network cell (with sparkline mock) ---------- */
.urv-net-cell {
  position: relative;
  background: rgba(8, 8, 8, 0.6);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 0.85rem;
  overflow: hidden;
  transition: all 0.25s ease;
}
.urv-net-cell::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--urv-red), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}
.urv-net-cell:hover {
  border-color: rgba(225,29,46,0.4);
  transform: translateY(-2px);
}
.urv-net-cell:hover::before { opacity: 1; }
.urv-net-spark {
  height: 22px;
  display: flex;
  align-items: flex-end;
  gap: 2px;
  margin-top: 0.5rem;
}
.urv-net-spark > span {
  flex: 1;
  background: linear-gradient(180deg, var(--urv-red), rgba(225,29,46,0.2));
  border-radius: 1px;
  opacity: 0.7;
}

/* ---------- Trader ID Card (passport / license style) ---------- */
.urv-id-card {
  position: relative;
  background:
    radial-gradient(700px 320px at 0% 0%,  rgba(225,29,46,0.10), transparent 55%),
    radial-gradient(700px 320px at 100% 100%, rgba(192,192,192,0.04), transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 1.25rem;
  overflow: hidden;
}
.urv-id-card::before {
  /* perforated top bar (passport stamp look) */
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background:
    repeating-linear-gradient(90deg,
      #E11D2E 0, #E11D2E 12px,
      rgba(225,29,46,0.3) 12px, rgba(225,29,46,0.3) 18px);
}
.urv-id-card::after {
  /* subtle grid pattern */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.5;
}
.urv-id-card > * { position: relative; z-index: 1; }

/* Hex avatar (hexagonal clip with gradient border) */
.urv-hex-avatar {
  position: relative;
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  filter: drop-shadow(0 0 14px rgba(225, 29, 46, 0.35));
}
.urv-hex-avatar::before {
  /* outer red ring */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #FF4757 0%, #E11D2E 50%, #5a0a14 100%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.urv-hex-avatar::after {
  /* inner dark hex */
  content: "";
  position: absolute;
  inset: 3px;
  background: linear-gradient(180deg, #1a1a1a 0%, #050505 100%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.urv-hex-avatar > span {
  position: relative;
  z-index: 1;
  font-size: 2rem;
  font-weight: 800;
  background-image: linear-gradient(135deg, #E5E5E5 0%, #C0C0C0 60%, #E11D2E 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ID-field grid item */
.urv-id-field {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 4px;
  padding: 0.5rem 0.7rem;
}
.urv-id-field .lbl {
  font-family: ui-monospace, "Courier New", monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #64748b;
  display: block;
}
.urv-id-field .val {
  font-family: ui-monospace, "Courier New", monospace;
  font-size: 13px;
  color: #ffffff;
  font-weight: 700;
  margin-top: 2px;
  display: block;
  word-break: break-all;
}

/* Terminal-style referral row */
.urv-ref-term {
  background: #000;
  border: 1px solid rgba(225, 29, 46, 0.25);
  border-radius: 4px;
  padding: 0.55rem 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: ui-monospace, "Courier New", monospace;
  font-size: 12px;
  overflow: hidden;
}
.urv-ref-term .prompt { color: #22c55e; flex-shrink: 0; }
.urv-ref-term .ref-text {
  color: #cbd5e1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
}

/* Big command buttons (replaces small icon-cards) */
.urv-cmd-btn {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.85rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  transition: all 0.22s ease;
  position: relative;
  overflow: hidden;
}
.urv-cmd-btn::after {
  content: "";
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #FF4757, #E11D2E);
  opacity: 0;
  transition: opacity 0.22s;
}
.urv-cmd-btn:hover {
  border-color: rgba(225,29,46,0.4);
  background: linear-gradient(135deg, rgba(225,29,46,0.10) 0%, rgba(225,29,46,0.02) 100%);
  transform: translateX(2px);
}
.urv-cmd-btn:hover::after { opacity: 1; }
.urv-cmd-btn-icon {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(225, 29, 46, 0.12);
  color: #E11D2E;
  border: 1px solid rgba(225, 29, 46, 0.25);
  flex-shrink: 0;
}
.urv-cmd-btn-title {
  font-weight: 700;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.urv-cmd-btn-sub {
  font-family: ui-monospace, "Courier New", monospace;
  font-size: 10px;
  color: #64748b;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ---------- Fuel Bandwidth Meter (horizontal segmented bar) ---------- */
.urv-bandwidth {
  position: relative;
  background:
    radial-gradient(400px 200px at 50% 50%, rgba(225,29,46,0.08), transparent 70%),
    rgba(8, 8, 8, 0.85);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 1.25rem;
  overflow: hidden;
}
.urv-bandwidth::before {
  /* left red blade */
  content: "";
  position: absolute;
  left: 0; top: 15%; bottom: 15%;
  width: 2px;
  background: linear-gradient(180deg, transparent, #E11D2E, transparent);
  box-shadow: 0 0 8px rgba(225,29,46,0.6);
}
.urv-bandwidth-segments {
  display: grid;
  grid-template-columns: repeat(20, 1fr);
  gap: 2px;
  height: 22px;
  padding: 3px;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
}
.urv-bandwidth-seg {
  background: rgba(255,255,255,0.04);
  border-radius: 1px;
  transition: background 0.25s ease;
}
.urv-bandwidth-seg.is-on {
  background: linear-gradient(180deg, #FF4757, #E11D2E);
  box-shadow: 0 0 6px rgba(225,29,46,0.7);
}
.urv-bandwidth-seg.is-on:nth-child(-n+5)  { background: linear-gradient(180deg, #22c55e, #16a34a); box-shadow: 0 0 6px rgba(34,197,94,0.6); }
.urv-bandwidth-seg.is-on:nth-child(n+6):nth-child(-n+12) { background: linear-gradient(180deg, #facc15, #eab308); box-shadow: 0 0 6px rgba(234,179,8,0.6); }
.urv-bandwidth-seg.is-on:nth-child(n+13):nth-child(-n+16){ background: linear-gradient(180deg, #fb923c, #f97316); box-shadow: 0 0 6px rgba(249,115,22,0.6); }
.urv-bandwidth-seg.is-on:nth-child(n+17){ background: linear-gradient(180deg, #FF4757, #E11D2E); box-shadow: 0 0 8px rgba(225,29,46,0.7); }

.urv-bandwidth-mark {
  font-family: ui-monospace, "Courier New", monospace;
  font-size: 9px;
  color: #64748b;
  letter-spacing: 0.08em;
}

/* ---------- Honeycomb-style stat (for legs) ---------- */
.urv-hex-stat {
  position: relative;
  background:
    linear-gradient(135deg, rgba(225,29,46,0.05), transparent 70%),
    rgba(10, 10, 10, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 1rem;
  overflow: hidden;
}
.urv-hex-stat::after {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(225,29,46,0.25);
  transform: rotate(45deg);
  pointer-events: none;
}

