:root {
  --uhu-refresh-primary: #0f53fa;
  --uhu-refresh-accent: #00acfb;
  --uhu-refresh-ink: #0b1220;
  --uhu-refresh-muted: #5b6b83;
  --uhu-refresh-line: rgba(15, 83, 250, 0.12);
  --uhu-refresh-surface: rgba(255, 255, 255, 0.82);
  --uhu-refresh-shadow: 0 24px 60px rgba(11, 18, 32, 0.09);
}

.uhu-offer-strip {
  display: grid;
  gap: 14px;
  margin-top: 26px;
  padding: 18px;
  border: 1px solid var(--uhu-refresh-line);
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(0, 172, 251, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 255, 0.92));
  box-shadow: var(--uhu-refresh-shadow);
}

.uhu-offer-strip--dark {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.84), rgba(11, 18, 32, 0.9));
  box-shadow: 0 22px 60px rgba(2, 8, 23, 0.42);
}

.uhu-offer-strip--compact {
  margin-top: 0;
}

.uhu-offer-strip__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--uhu-refresh-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.uhu-offer-strip--dark .uhu-offer-strip__eyebrow,
.uhu-offer-strip--dark .uhu-offer-strip__lead,
.uhu-offer-strip--dark .uhu-offer-chip strong,
.uhu-offer-strip--dark .uhu-offer-chip span {
  color: #f8fbff;
}

.uhu-offer-strip__eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--uhu-refresh-primary), var(--uhu-refresh-accent));
  box-shadow: 0 0 16px rgba(15, 83, 250, 0.35);
}

.uhu-offer-strip__lead {
  margin: 0;
  color: var(--uhu-refresh-ink);
  font-size: 1rem;
  line-height: 1.7;
}

.uhu-offer-strip__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.uhu-offer-chip {
  min-width: 154px;
  padding: 13px 15px;
  border: 1px solid rgba(15, 83, 250, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.uhu-offer-strip--dark .uhu-offer-chip {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.uhu-offer-chip strong,
.uhu-offer-chip span {
  display: block;
}

.uhu-offer-chip strong {
  margin-bottom: 4px;
  color: var(--uhu-refresh-ink);
  font-size: 0.95rem;
}

.uhu-offer-chip span {
  color: var(--uhu-refresh-muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.uhu-cloud-band {
  position: relative;
  overflow: hidden;
  margin-top: 26px;
  padding: 16px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.uhu-cloud-band__track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: uhuCloudDrift 30s linear infinite;
}

.uhu-cloud-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(15, 83, 250, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--uhu-refresh-ink);
  font-size: 0.92rem;
  white-space: nowrap;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  animation: uhuCloudFloat 6s ease-in-out infinite;
}

.uhu-cloud-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--uhu-refresh-primary), var(--uhu-refresh-accent));
  box-shadow: 0 0 14px rgba(15, 83, 250, 0.28);
}

.uhu-cloud-pill:nth-child(2n) { animation-delay: -1.4s; }
.uhu-cloud-pill:nth-child(3n) { animation-delay: -2.8s; }
.uhu-cloud-pill:nth-child(4n) { animation-delay: -4.2s; }

.uhu-campaign-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.uhu-campaign-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(15, 83, 250, 0.1);
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(0, 172, 251, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 255, 0.92));
  box-shadow: var(--uhu-refresh-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.uhu-campaign-card:hover,
.uhu-campaign-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(15, 83, 250, 0.18);
  box-shadow: 0 30px 70px rgba(11, 18, 32, 0.12);
}

.uhu-campaign-card__eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--uhu-refresh-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.uhu-campaign-card h3 {
  margin: 0 0 10px;
  color: var(--uhu-refresh-ink);
  font-size: 1.28rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.uhu-campaign-card p {
  margin: 0 0 18px;
  color: var(--uhu-refresh-muted);
  line-height: 1.7;
}

.uhu-campaign-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.uhu-campaign-card__meta span {
  color: var(--uhu-refresh-muted);
  font-size: 0.88rem;
}

.uhu-campaign-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--uhu-refresh-primary);
  font-weight: 700;
}

.uhu-mini-line {
  position: relative;
  min-height: 220px;
  padding: 26px;
  border: 1px solid rgba(15, 83, 250, 0.1);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 255, 0.92));
  box-shadow: var(--uhu-refresh-shadow);
}

.uhu-mini-line__grid {
  position: absolute;
  inset: 26px 26px 36px;
  border-left: 1px solid rgba(123, 144, 176, 0.22);
  border-bottom: 1px solid rgba(123, 144, 176, 0.22);
}

.uhu-mini-line__grid::before,
.uhu-mini-line__grid::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  border-top: 1px dashed rgba(123, 144, 176, 0.18);
}

.uhu-mini-line__grid::before { top: 34%; }
.uhu-mini-line__grid::after { top: 68%; }

.uhu-mini-line svg {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: visible;
}

.uhu-mini-line path {
  fill: none;
  stroke: url(#uhuLineGradient);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 360;
  stroke-dashoffset: 360;
  animation: uhuLineGrow 5s ease-in-out infinite;
}

.uhu-mini-line circle {
  fill: #0f53fa;
  opacity: 0;
  transform-origin: center;
  animation: uhuDotPop 5s ease-in-out infinite;
}

.uhu-mini-line circle:nth-of-type(1) { animation-delay: 0.4s; }
.uhu-mini-line circle:nth-of-type(2) { animation-delay: 0.8s; }
.uhu-mini-line circle:nth-of-type(3) { animation-delay: 1.2s; }
.uhu-mini-line circle:nth-of-type(4) { animation-delay: 1.6s; }
.uhu-mini-line circle:nth-of-type(5) { animation-delay: 2s; }

.uhu-mini-line__labels {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
  color: var(--uhu-refresh-muted);
  font-size: 0.82rem;
}

.story-step__chart {
  margin-top: 18px;
  min-height: 196px;
  padding: 22px 22px 18px;
}

.story-step__meta {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  color: var(--uhu-refresh-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.story-step__meta span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.story-step__meta span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--uhu-refresh-primary), var(--uhu-refresh-accent));
  box-shadow: 0 0 14px rgba(15, 83, 250, 0.2);
}

@keyframes uhuCloudDrift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@keyframes uhuCloudFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes uhuLineGrow {
  0%, 14% { stroke-dashoffset: 360; }
  42%, 74% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 0; }
}

@keyframes uhuDotPop {
  0%, 24% { opacity: 0; transform: scale(0.5); }
  32%, 78% { opacity: 1; transform: scale(1); }
  100% { opacity: 1; transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .uhu-cloud-band__track,
  .uhu-cloud-pill,
  .uhu-mini-line path,
  .uhu-mini-line circle {
    animation: none !important;
  }
}

@media (max-width: 991.98px) {
  .uhu-campaign-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .uhu-offer-strip {
    padding: 16px;
    border-radius: 20px;
  }

  .uhu-offer-chip {
    min-width: calc(50% - 6px);
    flex: 1 1 140px;
  }

  .uhu-campaign-card {
    padding: 22px 20px;
    border-radius: 22px;
  }

  .uhu-mini-line {
    min-height: 200px;
    padding: 20px;
  }

  .uhu-mini-line__grid {
    inset: 20px 20px 32px;
  }

  .story-step__chart {
    min-height: 184px;
    padding: 18px 18px 14px;
  }
}
