/* ==========================================================================
   HERO — Multi-Layer Fintech Color Hierarchy
   Canvas: Light Blue Tint (#F3F7FF) | Cards: Pure White (#FFFFFF)
   Headings: Deep Navy (#0B1F3A) | Primary: Blue (#1565D8) | Accent: Orange (#FF8A00)
   ========================================================================== */

.dc-hero {
  --h-ground:   #F3F7FF;
  --h-card:     #FFFFFF;
  --h-navy:     #0B1F3A;
  --h-blue:     #1565D8;
  --h-orange:   #FF8A00;
  --h-teal:     #14B8A6;
  --h-text:     #1E293B;
  --h-muted:    #64748B;
  --h-rule:     #EFE8DA;

  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(180deg, #F8FAFC 0%, #EBF3FC 50%, #DFECFA 100%);
  padding: clamp(36px, 4.5vw, 60px) 20px clamp(56px, 7vw, 88px);
  border-bottom: 2px solid #CBD5E1;
}

.dc-hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
  opacity: 0.35;
}

.dc-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% -10%, rgba(21, 101, 216, 0.14) 0%, transparent 60%),
    radial-gradient(circle at 85% 65%, rgba(255, 138, 0, 0.10) 0%, transparent 50%),
    radial-gradient(circle at 15% 75%, rgba(20, 184, 166, 0.10) 0%, transparent 50%),
    linear-gradient(180deg, transparent 65%, #FFFFFF 100%);
}

.dc-hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(32px, 4.5vw, 48px);
}

.dc-hero-head {
  text-align: center;
  max-width: 840px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.dc-hero-eyebrow {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 999px;
  background: #EAF2FF;
  border: 1.5px solid #93C5FD;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1565D8;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(21, 101, 216, 0.12);
}

.dc-hero-title {
  margin: 0;
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(2.3rem, 6vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #0B1F3A !important;
  -webkit-text-fill-color: #0B1F3A !important;
  text-wrap: balance;
}

.dc-hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, #1565D8 0%, #0EA5E9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
}

.dc-hero-sub {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.65;
  color: #334155;
  font-weight: 500;
  max-width: 680px;
  text-wrap: pretty;
}

.dc-hero-choice {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.dc-hero-side {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 34px 32px 30px;
  border-radius: 20px;
  text-decoration: none;
  color: inherit;
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
              border-color 260ms ease,
              box-shadow 260ms ease,
              background 260ms ease;
}

/* Card 1: ACQUISITIONS (Cool Pure White / Ice Blue) */
.dc-hero-side--buy {
  --side-tint: #1565D8;
  border: 2.5px solid #93C5FD !important;
  border-top: 6px solid #1565D8 !important;
  background: linear-gradient(180deg, #FFFFFF 0%, #F0F6FF 100%) !important;
  box-shadow: 0 18px 40px -10px rgba(21, 101, 216, 0.20), 0 4px 16px rgba(11, 31, 58, 0.06) !important;
}

.dc-hero-side--buy:hover,
.dc-hero-side--buy:focus-within {
  transform: translateY(-6px);
  border-color: #1565D8 !important;
  background: linear-gradient(180deg, #FFFFFF 0%, #E6F0FF 100%) !important;
  box-shadow: 0 26px 54px -12px rgba(21, 101, 216, 0.35), 0 0 0 3px rgba(21, 101, 216, 0.25) !important;
}

/* Card 2: DISPOSITIONS (Warm Cream / Soft Amber) */
.dc-hero-side--sell {
  --side-tint: #FF8A00;
  border: 2.5px solid #FDBA74 !important;
  border-top: 6px solid #FF8A00 !important;
  background: linear-gradient(180deg, #FFFDF8 0%, #FFF3E0 100%) !important;
  box-shadow: 0 18px 40px -10px rgba(255, 138, 0, 0.20), 0 4px 16px rgba(11, 31, 58, 0.06) !important;
}

.dc-hero-side--sell:hover,
.dc-hero-side--sell:focus-within {
  transform: translateY(-6px);
  border-color: #FF8A00 !important;
  background: linear-gradient(180deg, #FFFDF8 0%, #FFE8CC 100%) !important;
  box-shadow: 0 26px 54px -12px rgba(255, 138, 0, 0.35), 0 0 0 3px rgba(255, 138, 0, 0.25) !important;
}

.dc-hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.dc-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--side-tint);
}

.dc-hero-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--side-tint);
  box-shadow: 0 0 10px var(--side-tint);
}

.badge-live {
  background: #ECFDF5;
  color: #047857;
  border: 1.5px solid #6EE7B7;
  padding: 6px 14px;
  border-radius: 99px;
  font-weight: 800;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1.2;
}

.badge-soon {
  background: #FFF7ED;
  color: #C2410C;
  border: 1.5px solid #FDBA74;
  padding: 6px 14px;
  border-radius: 99px;
  font-weight: 800;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1.2;
}

.dc-hero-side h2 {
  margin: 0;
  font-family: 'Archivo', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0B1F3A;
}

.dc-hero-side p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #475569;
}

.dc-hero-go {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 10px 20px;
  border-radius: 10px;
  width: fit-content;
  text-decoration: none;
  transition: all 220ms ease;
}

.dc-hero-side--buy .dc-hero-go {
  background: #1565D8;
  color: #FFFFFF !important;
  box-shadow: 0 4px 14px rgba(21, 101, 216, 0.28);
}

.dc-hero-side--buy:hover .dc-hero-go {
  background: #0D47A1;
  box-shadow: 0 6px 20px rgba(21, 101, 216, 0.45);
}

.dc-hero-side--sell .dc-hero-go {
  background: #FF8A00;
  color: #FFFFFF !important;
  box-shadow: 0 4px 14px rgba(255, 138, 0, 0.28);
}

.dc-hero-side--sell:hover .dc-hero-go {
  background: #EA580C;
  box-shadow: 0 6px 20px rgba(255, 138, 0, 0.45);
}

.dc-hero-go span {
  display: inline-block;
  transition: transform 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

.dc-hero-side:hover .dc-hero-go span,
.dc-hero-side:focus-within .dc-hero-go span {
  transform: translateX(6px);
}

.dc-hero-alt {
  margin: 6px 0 0;
  font-size: 0.86rem;
  color: #64748B;
  position: relative;
  z-index: 2;
}

.dc-hero-alt a {
  color: var(--side-tint);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
}

.dc-hero-go::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 1;
}
