/* FL Studio — presentation hero (Ableton Live shop layout, FKA palette) */

:root {
  --font-ui: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
  --hero-accent-gradient: linear-gradient(135deg, #f09a48 0%, #e06828 48%, #ffb56a 100%);
}

.hero--presentation {
  position: relative;
  min-height: auto;
  margin-top: 8px;
  padding: clamp(3rem, 8vh, 5.5rem) 0 clamp(2.5rem, 8vh, 5rem);
}

.hero--presentation::before {
  content: none;
}

.hero--presentation .hero-inner {
  max-width: min(1120px, 100%);
}

.hero--presentation .hero-copy {
  gap: 0;
  padding-top: clamp(2rem, 4.5vh, 3.5rem);
}

@media (min-width: 981px) {
  .hero--presentation .hero-copy {
    padding-top: clamp(2.75rem, 5.5vh, 4.5rem);
  }
}

.hero--presentation .hero-kicker,
.hero--presentation .hero-subtitle {
  display: none;
}

.hero-display,
h1.hero-display {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 auto clamp(0.75rem, 2.5vh, 1.25rem);
  padding: 0;
  font-family: var(--font-ui);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-align: center;
  white-space: nowrap;
  text-shadow: none;
}

.hero-display__accent {
  display: inline-block;
  font-size: clamp(2rem, 7.5vw, 4.5rem);
  background: var(--hero-accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  margin: 0 auto clamp(1.25rem, 3.5vh, 2rem);
  max-width: 38rem;
  font-family: var(--font-ui);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #b8c0c8;
}

.hero-lead strong {
  color: #fff;
  font-weight: 600;
}

.hero--presentation .hero-actions {
  margin-top: 0;
  margin-bottom: clamp(0.75rem, 2vh, 1.25rem);
}

.hero--presentation .hero-buy-btn {
  min-width: min(100%, 260px);
  padding: 16px 32px;
  font-family: var(--font-ui);
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  border-radius: 999px !important;
  background: var(--hero-accent-gradient) !important;
  color: #1a0a00 !important;
  border: 1px solid rgba(255, 196, 123, 0.55) !important;
  box-shadow: 0 10px 32px rgba(224, 104, 40, 0.42) !important;
  isolation: isolate;
  overflow: hidden;
  animation: none;
}

.hero--presentation .hero-buy-btn::before {
  display: none !important;
}

.hero--presentation .hero-buy-btn::after {
  display: block !important;
  inset: -130% -45%;
  background: linear-gradient(
    108deg,
    rgba(155, 123, 255, 0) 32%,
    rgba(61, 214, 195, 0.38) 43%,
    rgba(255, 255, 255, 0.42) 50%,
    rgba(240, 154, 72, 0.36) 57%,
    rgba(155, 123, 255, 0) 68%
  );
  animation: buy-btn-shimmer 6.5s ease-in-out infinite;
}

.hero--presentation .hero-buy-btn:hover {
  filter: brightness(1.06) saturate(1.05) !important;
  transform: translateY(-1px);
}

.hero--presentation .hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 10px;
  width: 100%;
  max-width: 100%;
  margin: 15px auto clamp(1.5rem, 4vh, 2.75rem);
  padding: 0;
  font-family: var(--font-ui);
  font-size: clamp(0.6875rem, 2.4vw, 0.8125rem);
  letter-spacing: 0.01em;
  color: #8b949e;
  border: none;
  background: none;
  box-shadow: none;
  box-sizing: border-box;
}

.hero--presentation .hero-trust-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  font-weight: 500;
  color: #b0b8c0;
  white-space: nowrap;
  max-width: 100%;
  box-sizing: border-box;
  cursor: default;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease,
    color 0.22s ease;
}

.hero--presentation .hero-trust-chip:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent-2) 42%, rgba(255, 255, 255, 0.22));
  background: rgba(255, 255, 255, 0.07);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 8px 22px rgba(var(--glow-rgb), 0.18);
  color: #c8cdd4;
}

.hero--presentation .hero-trust-chip .checkmark-icon {
  width: 15px;
  height: 15px;
  color: var(--accent-2);
  opacity: 0.88;
  flex-shrink: 0;
  transition: transform 0.22s ease, opacity 0.22s ease, color 0.22s ease;
}

.hero--presentation .hero-trust-chip:hover .checkmark-icon {
  opacity: 1;
  transform: scale(1.12);
  color: var(--accent-2);
}

.hero--presentation .hero-trust-chip--emphasis {
  font-weight: 600;
  color: #c8cdd4;
}

@media (prefers-reduced-motion: reduce) {
  .hero--presentation .hero-trust-chip,
  .hero--presentation .hero-trust-chip .checkmark-icon {
    transition: none;
  }

  .hero--presentation .hero-trust-chip:hover,
  .hero--presentation .hero-trust-chip:hover .checkmark-icon {
    transform: none;
  }
}

.hero--presentation .hero-visual {
  width: min(100%, 1040px);
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  border: none;
  background: none;
  border-radius: clamp(12px, 2vw, 20px);
  overflow: hidden;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.45),
    0 24px 80px rgba(0, 0, 0, 0.35);
}

.hero--presentation .hero-fl-screenshot,
.hero--presentation .hero-fl-video {
  width: 100%;
  max-width: none;
  aspect-ratio: 16 / 9;
  border-radius: clamp(12px, 2vw, 20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  filter: none !important;
  box-shadow: none !important;
}

@media (max-width: 980px) {
  .hero--presentation .hero-fl-screenshot,
  .hero--presentation .hero-fl-video {
    width: 100% !important;
    max-width: none !important;
  }
}

@media (max-width: 640px) {
  .hero--presentation {
    padding-top: clamp(2rem, 6vh, 3rem);
    padding-bottom: 2rem;
  }

  .hero--presentation .hero-copy {
    padding-top: clamp(1.5rem, 4.5vh, 2.25rem);
  }

  .hero-display,
  h1.hero-display {
    white-space: normal;
  }

  .hero-display__accent {
    font-size: clamp(1.75rem, 8.5vw, 2.5rem);
  }

  .hero-lead {
    font-size: 0.975rem;
    padding-inline: 0.25rem;
  }

  .hero--presentation .hero-buy-btn {
    width: 100%;
    max-width: 300px;
  }

  .hero--presentation .hero-trust-bar {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: min(100%, 18.5rem);
    margin-inline: auto;
    padding-inline: 0.5rem;
    gap: 6px;
    font-size: 0.75rem;
  }

  .hero--presentation .hero-trust-chip {
    display: flex;
    width: 100%;
    padding: 0.48rem 0.7rem;
    gap: 6px;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
  }

  .hero--presentation .hero-trust-chip .checkmark-icon {
    width: 14px;
    height: 14px;
  }
}
