/* Hero wave panel visual fix */
.wave-panel {
  background: linear-gradient(135deg, rgba(255,107,53,0.08) 0%, rgba(6,10,15,0.95) 60%);
  border: 1px solid rgba(255,107,53,0.2);
  border-radius: 24px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 0 80px rgba(255,107,53,0.08), inset 0 1px 0 rgba(255,255,255,0.08);
}

.wave-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 40%, rgba(255,107,53,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(96,165,250,0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* Grid lines background */
.wave-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.wp-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.wp-title {
  font-weight: 800;
  font-size: 17px;
  color: #f0f4f8;
  letter-spacing: -0.02em;
}

.wp-sub {
  font-size: 13px;
  color: rgba(240,244,248,0.5);
  margin-top: 5px;
  font-style: italic;
}

/* Big animated waveform */
.wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 90px;
  padding: 10px 0;
  position: relative;
  z-index: 2;
  flex: 1;
  margin: 20px 0;
}

.wave i {
  flex: 1;
  border-radius: 99px;
  background: linear-gradient(180deg, #ff6b35, #ff3d68);
  min-height: 4px;
  animation: waveBar 1.4s ease-in-out infinite;
  transform-origin: center;
  opacity: 0.85;
}

.wave i:nth-child(odd) { background: linear-gradient(180deg, #ff8c5a, #ff6b35); opacity: 0.6; }
.wave i:nth-child(3n)  { background: linear-gradient(180deg, #ffa07a, #ff6b35); opacity: 0.4; }

@keyframes waveBar {
  0%, 100% { transform: scaleY(0.2); }
  50%       { transform: scaleY(1); }
}

.wp-foot {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 2;
}

.play {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b35, #ff3d68);
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(255,107,53,0.4);
}

.wp-bar {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 99px;
  overflow: hidden;
}

.wp-bar > span {
  display: block;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, #ff6b35, #ff8c5a);
  border-radius: 99px;
}

/* Feature cards */
.feature .fi {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255,107,53,0.12);
  border: 1px solid rgba(255,107,53,0.2);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: #ff6b35;
}

/* Floating particles in hero */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-particles span {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #ff6b35;
  animation: float linear infinite;
  opacity: 0;
}

@keyframes float {
  0%   { transform: translateY(100%) translateX(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-20px) translateX(20px); opacity: 0; }
}
