/* ============================================
   SECTION: BRAND MARQUEE
   ============================================ */
.marquee-section {
  background: #fff;
  border-top: 1px solid #f1eee4;
  border-bottom: 1px solid #f1eee4;
}

.marquee-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 42px 32px;
}

.marquee-label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(13, 27, 42, 0.42);
  margin-bottom: 26px;
}

.marquee-mask {
  mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
}

.marquee-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.marquee-row {
  overflow: hidden;
}

.marquee-row:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track {
  display: flex;
  width: max-content;
}

.marquee-track.marquee-left {
  animation: marqueeLeft 48s linear infinite;
}

.marquee-track.marquee-right {
  animation: marqueeRight 54s linear infinite;
}

.marquee-logo {
  flex: none;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 52px;
}

.marquee-logo img {
  height: 30px;
  width: auto;
  object-fit: contain;
}

@keyframes marqueeLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes marqueeRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none !important;
  }
}

/* ============================================
   SECTION: VIDEO
   ============================================ */
.video-section {
  background: var(--color-canvas);
}

.video-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 32px;
}

.section-heading {
  max-width: 680px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(13, 27, 42, 0.5);
  margin-bottom: 14px;
}

.section-title {
  font-size: var(--text-h2);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.video-player {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--color-primary);
  border: 1px solid #eceef1;
  border-radius: 18px;
  box-shadow: 0 30px 70px -34px rgba(13, 27, 42, 0.35);
  overflow: hidden;
  cursor: pointer;
}

.video-player button {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
}

.video-player img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
}

.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-play-btn span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--color-secondary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* ============================================
   SECTION: PROBLEM (persona cards)
   ============================================ */
.problem-section {
  background: var(--color-tertiary);
}

.problem-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 32px;
}

.problem-title-wrap {
  max-width: 720px;
  margin: 0 auto 52px;
  text-align: center;
}

.problem-title {
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.problem-title .dim {
  color: rgba(13, 27, 42, 0.42);
}

.persona-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}

.persona-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #eceef1;
  border-radius: 18px;
  box-shadow: 0 1px 3px rgba(13, 27, 42, 0.04);
  padding: 30px;
}

.persona-role {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.persona-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(13, 27, 42, 0.5);
  margin: 18px 0 12px;
}

.persona-text {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(13, 27, 42, 0.72);
}

.persona-text + .persona-text {
  margin-top: 12px;
}

.persona-solution {
  margin-top: auto;
  padding-top: 22px;
}

.persona-solution-box {
  background: var(--color-tertiary);
  border: 1px solid #fbe9a8;
  border-radius: 12px;
  padding: 16px 18px;
}

.persona-solution-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(13, 27, 42, 0.5);
  margin-bottom: 6px;
}

.persona-solution-text {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
