/* =============================================
   Homepage — wabs.ai
   Deep navy SaaS design matching reference
   ============================================= */

/* ---------- Homepage Color Overrides ---------- */
.hp-page {
  --hp-bg:           #080B18;
  --hp-bg2:          #0C1020;
  --hp-surface:      #0F1529;
  --hp-surface2:     #141A30;
  --hp-border:       rgba(139,92,246,0.14);
  --hp-border-soft:  rgba(255,255,255,0.06);
  --hp-purple:       #8B5CF6;
  --hp-purple-deep:  #6D28D9;
  --hp-purple-light: #A78BFA;
  --hp-purple-glow:  rgba(139,92,246,0.22);
  --hp-violet:       #7C3AED;
  --hp-white:        #FFFFFF;
  --hp-text:         #E8EAFF;
  --hp-muted:        #6B7BA4;
  --hp-muted2:       #4A5578;
  --hp-gold:         #F59E0B;
  --hp-radius:       14px;
}

/* ---------- Page-level overrides ---------- */
.hp-page {
  background: var(--hp-bg) !important;
  color: var(--hp-text);
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

/* Noise texture overlay */
.hp-page::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  opacity: 0.45;
}

.hp-page h1, .hp-page h2, .hp-page h3, .hp-page h4 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.1;
}

.hp-page .container {
  max-width: 1160px;
}

/* ---------- Nav overrides for homepage ---------- */
.hp-page .navbar {
  background: rgba(8,11,24,0.82) !important;
  backdrop-filter: blur(24px) saturate(1.5);
  border-bottom: 1px solid var(--hp-border);
  padding: 0 28px;
}

.hp-page .navbar.tradescrolled {
  background: rgba(8,11,24,0.92) !important;
  border-bottom: 1px solid var(--hp-border);
}

.hp-page .menulink li a {
  color: var(--hp-muted) !important;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.hp-page .menulink li a:hover {
  color: var(--hp-text) !important;
}

.hp-page .navsign-btn {
  background: linear-gradient(135deg, var(--hp-violet), var(--hp-purple));
  border-color: transparent;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 32px rgba(109,40,217,0.45);
}

.hp-page .navsign-btn:hover {
  background: linear-gradient(135deg, var(--hp-violet), var(--hp-purple));
  box-shadow: 0 8px 44px rgba(109,40,217,0.65);
  transform: translateY(-1px);
}

.hp-page .dash-paidEntry a {
  color: var(--hp-muted);
  font-family: 'Manrope', sans-serif;
}

.hp-page .dash-paidEntry a:hover {
  color: var(--hp-text) !important;
}

/* ---------- Animations ---------- */
@keyframes hp-fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes hp-blink {
  0%, 100% { opacity: 1; }
  55% { opacity: 0.2; }
}

@keyframes hp-tick {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Tag / Badge ---------- */
.hp-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hp-purple-light);
  border: 1px solid rgba(139,92,246,0.35);
  background: rgba(139,92,246,0.08);
  border-radius: 100px;
  padding: 5px 14px;
}

.hp-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hp-purple);
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--hp-purple);
  animation: hp-blink 2.2s infinite;
}

/* ---------- Buttons ---------- */
.hp-btn-p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--hp-violet), var(--hp-purple));
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(109,40,217,0.45);
  letter-spacing: 0.01em;
}

.hp-btn-p:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 44px rgba(109,40,217,0.65);
  color: #fff;
}

.hp-btn-p::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.14), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}

.hp-btn-p:hover::after {
  opacity: 1;
}

.hp-btn-o {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--hp-text);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: 10px;
  border: 1px solid rgba(139,92,246,0.3);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
}

.hp-btn-o:hover {
  background: rgba(139,92,246,0.08);
  border-color: var(--hp-purple);
  color: var(--hp-text);
}

.hp-play-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(139,92,246,0.2);
  border: 1px solid rgba(139,92,246,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #fff;
}

/* ---------- Section Headers ---------- */
.hp-shd {
  text-align: center;
  margin-bottom: 60px;
}

.hp-shd .hp-tag {
  margin-bottom: 18px;
}

.hp-shd h2 {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: var(--hp-white);
}

.hp-shd p {
  color: var(--hp-muted);
  max-width: 500px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.65;
}

.hp-divider {
  height: 1px;
  background: var(--hp-border-soft);
}

/* ==========================================
   HERO
   ========================================== */
.hp-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 28px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Glow orbs */
.hp-hg1 {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 700px;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 40%, rgba(109,40,217,0.22) 0%, rgba(139,92,246,0.07) 45%, transparent 70%);
}

.hp-hg2 {
  position: absolute;
  top: 30%;
  left: 15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139,92,246,0.08), transparent 70%);
  pointer-events: none;
}

.hp-hg3 {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(167,139,250,0.07), transparent 70%);
  pointer-events: none;
}

/* Dot grid */
.hp-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(139,92,246,0.25) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 0%, transparent 100%);
  opacity: 0.5;
}

.hp-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.hp-hero h1 {
  font-size: clamp(44px, 7vw, 86px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin-bottom: 26px;
  color: var(--hp-white);
}

.hp-hero h1 .hp-grd {
  display: block;
  background: linear-gradient(135deg, var(--hp-purple-light) 0%, #C4B5FD 60%, var(--hp-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hp-hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--hp-muted);
  max-width: 540px;
  margin: 0 auto 42px;
  line-height: 1.7;
  font-weight: 400;
}

.hp-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Video container */
.hp-hero-vid {
  margin-top: 68px;
  width: 100%;
  max-width: 980px;
  position: relative;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(139,92,246,0.25);
  box-shadow:
    0 0 0 1px rgba(139,92,246,0.08),
    0 0 80px rgba(109,40,217,0.25),
    0 40px 80px rgba(0,0,0,0.6);
  cursor: pointer;
}

.hp-hero-vid video {
  width: 100%;
  display: block;
  max-height: 550px;
  object-fit: cover;
  background: var(--hp-surface);
}

/* hide native controls */
.hp-hero-vid video::-webkit-media-controls { display: none !important; }
.hp-hero-vid video::-webkit-media-controls-enclosure { display: none !important; }

/* ---------- Play overlay ---------- */
.hp-vid-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: rgba(8,11,24,0.45);
  backdrop-filter: blur(1px);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.hp-vid-overlay--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Large play button */
.hp-vid-play-btn {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--hp-violet), var(--hp-purple-light));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 12px rgba(139,92,246,0.12),
    0 0 60px rgba(109,40,217,0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.hp-vid-play-btn::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(139,92,246,0.2);
  animation: hp-ring-pulse 2.5s ease-out infinite;
}

@keyframes hp-ring-pulse {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

.hp-vid-play-btn:hover {
  transform: scale(1.08);
  box-shadow:
    0 0 0 14px rgba(139,92,246,0.18),
    0 0 80px rgba(109,40,217,0.65);
}

.hp-vid-play-btn svg {
  margin-left: 4px;
}

.hp-vid-play-label {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
}

/* ---------- Custom controls bar ---------- */
.hp-vid-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 12;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: linear-gradient(to top, rgba(8,11,24,0.92) 0%, rgba(8,11,24,0.5) 70%, transparent 100%);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.hp-vid-controls--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Control buttons */
.hp-vid-ctrl-btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
  padding: 0;
}

.hp-vid-ctrl-btn:hover {
  background: rgba(139,92,246,0.2);
  border-color: rgba(139,92,246,0.4);
}

/* Progress bar */
.hp-vid-progress {
  flex: 1;
  height: 5px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.hp-vid-progress:hover {
  height: 7px;
}

.hp-vid-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--hp-violet), var(--hp-purple-light));
  border-radius: 10px;
  transition: width 0.15s linear;
  position: relative;
}

.hp-vid-progress-fill::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--hp-purple-light);
  box-shadow: 0 0 10px rgba(139,92,246,0.6);
  opacity: 0;
  transition: opacity 0.2s;
}

.hp-vid-progress:hover .hp-vid-progress-fill::after {
  opacity: 1;
}

/* Time display */
.hp-vid-time {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 80px;
  text-align: center;
  letter-spacing: 0.03em;
}

/* Fullscreen tweaks */
.hp-hero-vid:fullscreen .hp-vid-controls,
.hp-hero-vid:-webkit-full-screen .hp-vid-controls {
  padding: 20px 32px;
}

.hp-hero-vid:fullscreen video,
.hp-hero-vid:-webkit-full-screen video {
  max-height: 100vh;
  object-fit: contain;
}

/* Hero animations */
.hp-hero .hp-tag   { animation: hp-fadeUp 0.55s ease both; }
.hp-hero h1        { animation: hp-fadeUp 0.55s 0.1s ease both; }
.hp-hero-sub       { animation: hp-fadeUp 0.55s 0.2s ease both; }
.hp-ctas           { animation: hp-fadeUp 0.55s 0.3s ease both; }
.hp-hero-vid       { animation: hp-fadeUp 0.7s 0.4s ease both; }

/* ==========================================
   BROKERS TICKER
   ========================================== */
.hp-brokers {
  padding: 52px 0;
  border-top: 1px solid var(--hp-border-soft);
  border-bottom: 1px solid var(--hp-border-soft);
  background: var(--hp-bg2);
}

.hp-blab {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hp-muted2);
  margin-bottom: 30px;
  font-family: 'Manrope', sans-serif;
}

.hp-ticker-wrap {
  overflow: hidden;
  position: relative;
}

.hp-ticker-wrap::before,
.hp-ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}

.hp-ticker-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--hp-bg2), transparent);
}

.hp-ticker-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--hp-bg2), transparent);
}

.hp-ticker-track {
  display: flex;
  gap: 52px;
  align-items: center;
  width: max-content;
  animation: hp-tick 30s linear infinite;
}

.hp-bc {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--hp-muted);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  font-family: 'Manrope', sans-serif;
  transition: color 0.2s;
}

.hp-bc:hover {
  color: var(--hp-purple-light);
}

.hp-bc::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--hp-purple);
  opacity: 0.6;
  flex-shrink: 0;
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.hp-testimonials {
  padding: 100px 0;
}

.hp-tg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.hp-tc {
  background: var(--hp-surface);
  border: 1px solid var(--hp-border-soft);
  border-radius: var(--hp-radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.hp-tc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,92,246,0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.hp-tc:hover {
  border-color: rgba(139,92,246,0.22);
  transform: translateY(-4px);
}

.hp-tc:hover::before {
  opacity: 1;
}

.hp-stars {
  display: flex;
  gap: 2px;
}

.hp-stars span {
  color: var(--hp-gold);
  font-size: 13px;
}

.hp-tq {
  font-size: 14px;
  line-height: 1.7;
  color: #C0C8E8;
  font-style: italic;
  flex: 1;
}

.hp-ta {
  display: flex;
  align-items: center;
  gap: 11px;
}

.hp-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--hp-violet), var(--hp-purple-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: #fff;
}

.hp-an {
  font-weight: 700;
  font-size: 13px;
  color: var(--hp-text);
}

.hp-ar {
  color: var(--hp-muted);
  font-size: 11px;
  margin-top: 1px;
}

/* Stats strip */
.hp-ss {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 44px;
  border-radius: var(--hp-radius);
  overflow: hidden;
  border: 1px solid var(--hp-border);
  background: var(--hp-border);
  gap: 1px;
}

.hp-sc {
  background: var(--hp-surface2);
  padding: 30px 20px;
  text-align: center;
}

.hp-sn {
  font-family: 'Outfit', sans-serif;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--hp-purple-light), #C4B5FD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hp-sl {
  color: var(--hp-muted);
  font-size: 12px;
  margin-top: 4px;
  font-weight: 500;
}

/* ==========================================
   FEATURES
   ========================================== */
.hp-features {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(139,92,246,0.04) 50%, transparent 100%);
}

.hp-fg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.hp-fc {
  background: var(--hp-surface);
  border: 1px solid var(--hp-border-soft);
  border-radius: var(--hp-radius);
  padding: 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hp-fc::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,92,246,0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.hp-fc:hover {
  border-color: rgba(139,92,246,0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(0,0,0,0.35);
}

.hp-fc:hover::after {
  opacity: 1;
}

.hp-fi {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(109,40,217,0.25), rgba(139,92,246,0.1));
  border: 1px solid rgba(139,92,246,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.hp-fc h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  color: var(--hp-white);
}

.hp-fc p {
  color: var(--hp-muted);
  font-size: 13px;
  line-height: 1.65;
}

.hp-fimg {
  margin-top: auto;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--hp-border-soft);
  background: var(--hp-bg);
  aspect-ratio: 16 / 10;
}

.hp-fimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  display: block;
}

/* ==========================================
   BENEFITS (alternating)
   ========================================== */
.hp-benefits {
  padding: 100px 0;
}

.hp-br {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 110px;
}

.hp-br:last-child {
  margin-bottom: 0;
}

.hp-br.hp-flip .hp-bt { order: 2; }
.hp-br.hp-flip .hp-bv { order: 1; }

.hp-bt .hp-tag {
  margin-bottom: 18px;
}

.hp-bt h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: var(--hp-white);
}

.hp-bt p {
  color: var(--hp-muted);
  font-size: 15px;
  line-height: 1.72;
  margin-bottom: 20px;
}

.hp-bl {
  list-style: none;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}

.hp-bl li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #C0C8E8;
  font-size: 14px;
  line-height: 1.55;
}

.hp-ck {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  background: rgba(139,92,246,0.15);
  border: 1px solid rgba(139,92,246,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hp-purple-light);
  font-size: 9px;
}

.hp-bv {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(139,92,246,0.2);
  background: var(--hp-bg);
  box-shadow: 0 30px 70px rgba(0,0,0,0.45), 0 0 40px rgba(109,40,217,0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hp-bv img {
  width: 100%;
  height: auto;
  display: block;
}

.hp-bv img + img {
  border-top: 1px solid rgba(139,92,246,0.1);
}

/* ==========================================
   HOW IT WORKS
   ========================================== */
.hp-hiw {
  padding: 100px 0;
}

.hp-sr {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.hp-sr::before {
  content: '';
  position: absolute;
  top: 26px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,92,246,0.5), transparent);
}

.hp-step {
  text-align: center;
}

.hp-snum {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin: 0 auto 22px;
  background: linear-gradient(135deg, var(--hp-violet), var(--hp-purple-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  box-shadow: 0 0 30px rgba(109,40,217,0.45);
  position: relative;
  z-index: 1;
}

.hp-step h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--hp-white);
}

.hp-step p {
  color: var(--hp-muted);
  font-size: 13px;
  line-height: 1.65;
  max-width: 240px;
  margin: 0 auto;
}

.hp-hcta {
  text-align: center;
  margin-top: 56px;
}

/* ==========================================
   MARKET TOOLS
   ========================================== */
.hp-mt {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(109,40,217,0.05) 50%, transparent);
}

.hp-mtg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.hp-mc {
  background: var(--hp-surface);
  border: 1px solid var(--hp-border-soft);
  border-radius: var(--hp-radius);
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.hp-mc:hover {
  border-color: rgba(139,92,246,0.22);
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(0,0,0,0.35);
}

.hp-mi {
  overflow: hidden;
  background: var(--hp-bg);
  aspect-ratio: 16 / 10;
}

.hp-mi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  display: block;
}

.hp-mb {
  padding: 22px;
}

.hp-mb h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--hp-white);
}

.hp-mb p {
  color: var(--hp-muted);
  font-size: 13px;
  line-height: 1.62;
}

/* ==========================================
   WHY WEALTH LABS
   ========================================== */
.hp-why {
  padding: 100px 0;
}

.hp-wg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.hp-wc {
  background: var(--hp-surface2);
  border: 1px solid var(--hp-border-soft);
  border-radius: var(--hp-radius);
  padding: 28px;
  transition: all 0.25s;
}

.hp-wc:hover {
  border-color: rgba(139,92,246,0.2);
}

.hp-wi {
  font-size: 24px;
  margin-bottom: 14px;
  display: block;
  filter: drop-shadow(0 0 8px rgba(139,92,246,0.5));
}

.hp-wc h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 9px;
  color: var(--hp-white);
}

.hp-wc p {
  color: var(--hp-muted);
  font-size: 13px;
  line-height: 1.65;
}

/* ==========================================
   CTA BANNER
   ========================================== */
.hp-ctab {
  padding: 80px 0;
}

.hp-ctai {
  background: var(--hp-surface);
  border: 1px solid rgba(139,92,246,0.25);
  border-radius: 22px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hp-ctai::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  pointer-events: none;
  background: radial-gradient(ellipse, rgba(109,40,217,0.18), transparent 65%);
}

.hp-ctai h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  color: var(--hp-white);
  position: relative;
}

.hp-ctai p {
  color: var(--hp-muted);
  font-size: 17px;
  margin-bottom: 38px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.hp-ctai .hp-ctas {
  position: relative;
}

/* ==========================================
   FAQ (2-column grid)
   ========================================== */
.hp-faq {
  padding: 100px 0;
}

.hp-fqg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 840px;
  margin: 0 auto;
}

.hp-fqi {
  background: var(--hp-surface);
  border: 1px solid var(--hp-border-soft);
  border-radius: var(--hp-radius);
  padding: 26px;
  transition: border-color 0.25s;
}

.hp-fqi:hover {
  border-color: rgba(139,92,246,0.2);
}

.hp-fqi h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 9px;
  line-height: 1.4;
  color: var(--hp-white);
}

.hp-fqi p {
  color: var(--hp-muted);
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
}

/* ==========================================
   FOOTER
   ========================================== */
#footer.hp-footer {
  border-top: 1px solid var(--hp-border-soft) !important;
  background: var(--hp-bg2) !important;
  padding: 64px 0 40px !important;
  box-shadow: none !important;
}

#footer.hp-footer .footersec {
  display: block !important;
}

#footer.hp-footer .footer-link {
  display: grid !important;
  grid-template-columns: 2fr 1fr 1fr 1fr !important;
  gap: 60px !important;
  width: 100% !important;
  margin-bottom: 56px;
}

#footer.hp-footer .footer-column h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hp-purple-light) !important;
  margin-bottom: 16px;
}

#footer.hp-footer .footer-brand-desc {
  color: var(--hp-muted);
  font-size: 13px;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 230px;
  font-family: 'Manrope', sans-serif;
}

#footer.hp-footer .menulist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#footer.hp-footer .menulist li {
  padding: 0;
  margin: 0;
}

#footer.hp-footer .menulist li a {
  color: var(--hp-muted) !important;
  font-size: 13px;
  text-decoration: none;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  transition: color 0.2s;
}

#footer.hp-footer .menulist li a:hover {
  color: var(--hp-text) !important;
}

#footer.hp-footer .ftr-social-icons {
  display: flex;
  gap: 10px;
}

#footer.hp-footer .ftr-social-icons a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--hp-surface);
  border: 1px solid var(--hp-border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hp-muted);
  text-decoration: none;
  transition: all 0.2s;
  font-size: 15px;
}

#footer.hp-footer .ftr-social-icons a:hover {
  border-color: var(--hp-purple);
  color: var(--hp-purple-light);
  background: var(--hp-surface);
}

#footer.hp-footer .footer-bottom {
  border-top: 1px solid var(--hp-border-soft);
  padding-top: 28px;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#footer.hp-footer .footer-bottom p {
  color: var(--hp-muted2);
  font-size: 12px;
  font-family: 'Manrope', sans-serif;
  margin: 0;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 960px) {
  .hp-tg,
  .hp-fg,
  .hp-mtg,
  .hp-wg {
    grid-template-columns: 1fr 1fr;
  }
  .hp-br {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hp-br.hp-flip .hp-bt,
  .hp-br.hp-flip .hp-bv {
    order: 0;
  }
  .hp-sr {
    grid-template-columns: 1fr;
  }
  .hp-sr::before {
    display: none;
  }
  .hp-ss {
    grid-template-columns: 1fr 1fr;
  }
  .hp-fqg {
    grid-template-columns: 1fr;
  }
  #footer.hp-footer .footer-link {
    grid-template-columns: 1fr 1fr !important;
    gap: 36px !important;
  }
}

@media (max-width: 600px) {
  .hp-tg,
  .hp-fg,
  .hp-mtg,
  .hp-wg {
    grid-template-columns: 1fr;
  }
  #footer.hp-footer .footer-link {
    grid-template-columns: 1fr !important;
  }
  .hp-ctai {
    padding: 48px 24px;
  }
  .hp-hero {
    padding: 110px 20px 60px;
  }
  .hp-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .hp-btn-p,
  .hp-btn-o {
    justify-content: center;
  }
  .hp-ss {
    grid-template-columns: 1fr 1fr;
  }
  .hp-bv {
    width: 100%;
  }
}
