/* Story & Proof Combined Timeline Section - Polished */

.story {
  background: linear-gradient(135deg, #fafafa 0%, var(--color-white) 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.story::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--color-gray-200) 50%, transparent 100%);
}

.story__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* Header */
.story__header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}

.story__title {
  font-family: var(--font-family-heading);
  font-size: 44px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #111827;
  margin: 0;
  position: relative;
  display: inline-block;
}

@media (min-width: 768px) {
  .story__title {
    font-size: 48px;
  }
}

/* Timeline */
.story__timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .story__timeline {
    padding: 0 20px;
  }
}

/* Snake Line Timeline */
.timeline-snake-line {
  position: absolute;
  top: 50px;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: calc(100% - 100px);
  z-index: 0;
  pointer-events: none;
}

.timeline-snake-base {
  opacity: 0.4;
}

.timeline-snake-progress {
  opacity: 1;
  filter: drop-shadow(0 0 3px rgba(255, 0, 0, 0.4));
}

/* The clip rect will be animated via JavaScript to reveal the progress line */
.timeline-clip-rect {
  transition: height 0.3s ease-out;
}

@media (max-width: 767px) {
  .timeline-snake-line {
    left: 30px;
    transform: none;
    width: 60px;
    top: 50px;
    bottom: 50px;
    height: calc(100% - 100px);
  }
  
  /* Simplified mobile line */
  .story__timeline::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 50px;
    bottom: 50px;
    width: 2px;
    background: linear-gradient(
      to bottom,
      transparent 0%,
      var(--color-gray-300) 5%,
      var(--color-gray-300) 95%,
      transparent 100%
    );
    z-index: 0;
  }
}

/* Timeline Step - Clean Alternating Layout */
.timeline-step {
  display: flex;
  position: relative;
  margin-bottom: 32px;
  min-height: 100px;
  align-items: center;
}

@media (min-width: 768px) {
  .timeline-step {
    margin-bottom: 40px;
    min-height: 110px;
  }
}

.timeline-step:last-child {
  margin-bottom: 0;
}

/* Odd steps (1, 3, 5) - RIGHT aligned */
.timeline-step:nth-child(odd) {
  justify-content: flex-end;
  padding-left: 50%;
}

/* Even steps (2, 4) - LEFT aligned */
.timeline-step:nth-child(even) {
  justify-content: flex-start;
  padding-right: 50%;
}

/* Mobile: Stack all vertically */
@media (max-width: 767px) {
  .timeline-step:nth-child(odd),
  .timeline-step:nth-child(even) {
    padding: 0 !important;
    padding-left: 60px !important;
    justify-content: flex-start !important;
  }
}

/* Timeline Year Badge - Simple design above content */
.timeline-step__year {
  font-family: var(--font-family-heading);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-gray-500);
  margin-bottom: 12px;
  display: block;
  will-change: transform, opacity;
}

@media (min-width: 768px) {
  .timeline-step__year {
    font-size: 12px;
    margin-bottom: 14px;
  }
}

@media (max-width: 767px) {
  .timeline-step__year {
    font-size: 10px;
    margin-bottom: 10px;
  }
}

/* Timeline Marker (Dot) - Positioned at center */
.timeline-step__marker {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: all 0.3s ease;
}

@media (max-width: 767px) {
  .timeline-step__marker {
    left: 30px;
    transform: translateY(-50%);
  }
}

.timeline-step__dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-white);
  border: 3px solid var(--color-gray-400);
  position: relative;
  z-index: 3;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  will-change: transform, opacity;
}

.timeline-step__dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-gray-400);
  transition: all 0.3s ease;
}

/* Active state when scrolled into view */
.timeline-step__dot.active {
  border-color: var(--color-primary);
  box-shadow: 
    0 0 0 4px rgba(255, 0, 0, 0.1),
    0 2px 8px rgba(255, 0, 0, 0.2);
}

.timeline-step__dot.active::after {
  background: var(--color-primary);
}

.timeline-step__dot--highlight {
  width: 28px;
  height: 28px;
  border-color: rgba(255, 200, 0, 0.8);
  background: var(--color-white);
  border-width: 4px;
  box-shadow: 
    0 0 0 6px rgba(255, 200, 0, 0.15),
    0 3px 10px rgba(255, 200, 0, 0.3);
}

.timeline-step__dot--highlight::after {
  width: 10px;
  height: 10px;
  background: rgba(255, 200, 0, 0.8);
}

.timeline-step__dot--highlight.active {
  border-color: rgba(255, 200, 0, 1);
  box-shadow: 
    0 0 0 6px rgba(255, 200, 0, 0.2),
    0 3px 12px rgba(255, 200, 0, 0.4);
}

.timeline-step__dot--success {
  width: 30px;
  height: 30px;
  border-color: var(--color-primary);
  background: var(--color-white);
  border-width: 4px;
  box-shadow: 
    0 0 0 8px rgba(255, 0, 0, 0.12),
    0 3px 12px rgba(255, 0, 0, 0.3);
}

.timeline-step__dot--success::after {
  width: 11px;
  height: 11px;
  background: var(--color-primary);
}

.timeline-step__dot--success.active {
  box-shadow: 
    0 0 0 10px rgba(255, 0, 0, 0.15),
    0 3px 14px rgba(255, 0, 0, 0.4);
}

@keyframes pulse-border {
  0%, 100% {
    box-shadow: 
      0 0 0 8px rgba(255, 0, 0, 0.1),
      0 4px 12px rgba(255, 0, 0, 0.2);
  }
  50% {
    box-shadow: 
      0 0 0 14px rgba(255, 0, 0, 0),
      0 4px 12px rgba(255, 0, 0, 0.2);
  }
}

/* Remove the separate line element - line is now the background */
.timeline-step__line {
  display: none;
}

/* Timeline Content */
.timeline-step__content {
  background: var(--color-white);
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: 
    0 1px 3px rgba(0, 0, 0, 0.02),
    0 4px 12px rgba(0, 0, 0, 0.05),
    0 8px 24px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 480px;
  z-index: 1;
  margin-top: 0;
  will-change: transform, opacity;
}

@media (min-width: 768px) {
  .timeline-step__content {
    padding: 32px 36px;
    max-width: 520px;
  }
}

/* Connector line from dot to content */
.timeline-step__content::after {
  content: '';
  position: absolute;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gray-200), var(--color-gray-300));
  z-index: 0;
  transform: translateY(-50%);
}

/* Odd steps (right side) - connector on left going to center */
.timeline-step:nth-child(odd) .timeline-step__content::after {
  left: -50px;
  width: 50px;
}

/* Even steps (left side) - connector on right going to center */
.timeline-step:nth-child(even) .timeline-step__content::after {
  right: -50px;
  width: 50px;
}

/* Hide connector for first and last timeline steps */
.timeline-step:first-child .timeline-step__content::after,
.timeline-step:last-child .timeline-step__content::after {
  display: none;
}

@media (max-width: 767px) {
  .timeline-step__content::after {
    left: -40px !important;
    width: 30px !important;
  }
}

.timeline-step__content:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.04),
    0 8px 24px rgba(0, 0, 0, 0.06),
    0 16px 40px rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
}

/* Highlight content (Discovery step) */
.timeline-step__content--highlight {
  background: linear-gradient(135deg, #fffef8 0%, #fefcf0 100%);
  border-color: rgba(255, 200, 0, 0.2);
  box-shadow: 
    0 2px 4px rgba(255, 200, 0, 0.05),
    0 4px 12px rgba(0, 0, 0, 0.05),
    0 8px 24px rgba(255, 200, 0, 0.08);
}

.timeline-step__content--highlight:hover {
  border-color: rgba(255, 200, 0, 0.3);
  box-shadow: 
    0 2px 8px rgba(255, 200, 0, 0.08),
    0 8px 24px rgba(0, 0, 0, 0.06),
    0 16px 40px rgba(255, 200, 0, 0.12);
}

/* Success content (Final step) */
.timeline-step__content--success {
  background: linear-gradient(135deg, #fffafa 0%, #fff5f5 100%);
  border: 2px solid var(--color-primary);
  box-shadow: 
    0 2px 6px rgba(255, 0, 0, 0.08),
    0 4px 16px rgba(255, 0, 0, 0.1),
    0 12px 32px rgba(255, 0, 0, 0.08);
}

.timeline-step__content--success:hover {
  border-color: var(--color-primary);
  transform: translateY(-5px);
  box-shadow: 
    0 2px 8px rgba(255, 0, 0, 0.1),
    0 8px 24px rgba(255, 0, 0, 0.15),
    0 16px 48px rgba(255, 0, 0, 0.12);
}

/* Wide content for proof step */
.timeline-step__content--wide {
  padding: 36px;
}

@media (max-width: 767px) {
  .timeline-step__content--wide {
    padding: 28px;
  }
}

/* Timeline step with illustration - positions illustration to the right */
.timeline-step--with-illustration {
  position: relative;
}

.timeline-step__illustration {
  position: absolute;
  left: calc(50% + 90px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

/* Connecting line from dot to illustration */
.timeline-step__illustration::before {
  content: '';
  position: absolute;
  left: -90px;
  top: 50%;
  width: 90px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gray-300), var(--color-gray-200));
  transform: translateY(-50%);
}

@media (max-width: 1400px) {
  .timeline-step__illustration {
    left: calc(50% + 70px);
  }
  
  .timeline-step__illustration::before {
    left: -70px;
    width: 70px;
  }
}

@media (max-width: 1200px) {
  .timeline-step__illustration {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin-top: 24px;
    margin-left: auto;
    margin-right: 0;
    max-width: 100%;
  }
  
  .timeline-step__illustration::before {
    display: none;
  }
}

/* Single Image Illustration */
.illustration-img {
  width: 340px;
  height: auto;
  border-radius: 14px;
  transition: all 0.35s ease;
  display: block;
}

.illustration-img:hover {
  transform: translateY(-4px) scale(1.02);
}

@media (max-width: 1400px) {
  .illustration-img {
    width: 280px;
  }
}

@media (max-width: 600px) {
  .illustration-img {
    width: 220px;
  }
}

/* Thumbnail Transition Component */
.thumbnail-transition {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 600px) {
  .thumbnail-transition {
    flex-direction: column;
    gap: 12px;
  }
}

.thumbnail-transition__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.thumbnail-frame {
  position: relative;
  width: 240px;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.12),
    0 3px 8px rgba(0, 0, 0, 0.08);
  border: 3px solid var(--color-gray-200);
  transition: all 0.35s ease;
}

.thumbnail-frame:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    0 12px 32px rgba(0, 0, 0, 0.18),
    0 6px 12px rgba(0, 0, 0, 0.12);
  border-color: var(--color-gray-300);
}

@media (max-width: 1400px) {
  .thumbnail-frame {
    width: 200px;
  }
}

@media (max-width: 600px) {
  .thumbnail-frame {
    width: 220px;
  }
}

.thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.thumbnail-stat {
  font-family: var(--font-family-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-gray-600);
  text-align: center;
}

.thumbnail-stat--success {
  color: var(--color-primary);
  font-size: 18px;
}

.thumbnail-transition__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.transition-arrow-icon {
  width: 32px;
  height: 32px;
  color: var(--color-gray-400);
  stroke-width: 2.5;
  transition: all 0.3s ease;
}

.thumbnail-transition:hover .transition-arrow-icon {
  color: var(--color-primary);
  transform: translateX(4px);
}

@media (max-width: 600px) {
  .transition-arrow-icon {
    transform: rotate(90deg);
    width: 28px;
    height: 28px;
  }
  
  .thumbnail-transition:hover .transition-arrow-icon {
    transform: rotate(90deg) translateX(4px);
  }
}


/* Animations */
@keyframes pulse-glow {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.08);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.timeline-step__title {
  font-family: var(--font-family-heading);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--color-gray-900);
  margin: 0 0 10px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (min-width: 768px) {
  .timeline-step__title {
    font-size: 24px;
    margin-bottom: 12px;
  }
}

.timeline-step__description {
  font-family: var(--font-family-primary);
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-gray-700);
  margin: 0 0 20px 0;
}

@media (min-width: 768px) {
  .timeline-step__description {
    font-size: 15.5px;
    line-height: 1.7;
  }
}

/* Timeline Stats */
.timeline-step__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.timeline-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--color-gray-50);
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.timeline-stat:hover {
  background: var(--color-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-color: var(--color-gray-200);
}

.timeline-stat--success {
  background: var(--color-gray-50);
  border: 1px solid var(--color-gray-200);
}

.timeline-stat__icon {
  width: 26px;
  height: 26px;
  color: var(--color-gray-500);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.timeline-stat--success .timeline-stat__icon {
  color: var(--color-primary);
}

.timeline-stat:hover .timeline-stat__icon {
  transform: scale(1.1);
}

.timeline-stat__content {
  flex: 1;
}

.timeline-stat__value {
  font-family: var(--font-family-heading);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-gray-900);
  margin-bottom: 5px;
}

.timeline-stat--success .timeline-stat__value {
  color: var(--color-primary);
  font-size: 26px;
}

.timeline-stat__label {
  font-family: var(--font-family-primary);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--color-gray-600);
  line-height: 1.3;
}

/* Discovered Channel Visual */
.discovered-channel {
  margin-top: 20px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  border: none;
}

.discovered-channel__visual {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px;
  background: linear-gradient(135deg, #f9fafb 0%, var(--color-white) 100%);
  border-radius: 18px;
  border: 2px solid var(--color-gray-200);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.discovered-channel__visual:hover {
  border-color: var(--color-gray-300);
  background: linear-gradient(135deg, #f3f4f6 0%, var(--color-white) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.discovered-channel__thumbnail {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 3px solid var(--color-white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background: var(--color-white);
}

@media (min-width: 768px) {
  .discovered-channel__thumbnail {
    width: 96px;
    height: 96px;
  }
}

.thumbnail-icon {
  width: 40px;
  height: 40px;
  color: var(--color-gray-300);
  stroke-width: 1.5;
}

.thumbnail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.discovered-channel__info {
  flex: 1;
  min-width: 0;
}

.discovered-channel__name {
  font-family: var(--font-family-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 8px;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .discovered-channel__name {
    font-size: 20px;
  }
}

.discovered-channel__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.channel-stat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background: var(--color-gray-100);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-gray-700);
  white-space: nowrap;
}

.discovered-channel__insight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--color-white);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-gray-700);
  border: 1px solid var(--color-gray-200);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.insight-icon {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* Inspiration Flow */
.inspiration-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 24px;
  border-radius: 16px;
}

@media (min-width: 768px) {
  .inspiration-flow {
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: start;
  }
}

.inspiration-flow__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
  background: transparent;
  border-radius: 16px;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .inspiration-flow__item {
    padding: 28px;
  }
}

.flow-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gray-600);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

@media (min-width: 768px) {
  .flow-label {
    font-size: 13px;
  }
}

.flow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-gray-400);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

.flow-dot--success {
  background: var(--color-primary);
  box-shadow: 
    0 0 0 3px rgba(0, 0, 0, 0.05),
    0 2px 4px rgba(0, 0, 0, 0.1);
}

.flow-visual {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #fafafa 0%, #f3f4f6 100%);
  border-radius: 16px;
  border: 3px solid var(--color-gray-200);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 3px 12px rgba(0, 0, 0, 0.08),
    0 6px 24px rgba(0, 0, 0, 0.06);
  width: 100%;
  max-width: 100%;
}

.flow-visual:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.12),
    0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: var(--color-gray-300);
}

.flow-thumbnail {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-thumbnail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 9px;
  transition: transform 0.3s ease;
}

.flow-visual:hover .flow-thumbnail-image {
  transform: scale(1.02);
}

.flow-icon {
  width: 40px;
  height: 40px;
  color: var(--color-gray-300);
  stroke-width: 1.5;
}

.flow-badge,
.flow-badges {
  position: absolute;
  bottom: 5px;
  right: 5px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.flow-badge {
  padding: 4px 12px;
  background: linear-gradient(135deg, #CC404B 0%, #CC404B 100%);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  position: relative;
  transform: translateZ(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  animation: pulse 2s ease-in-out infinite;
}

.flow-badge svg {
  fill: white;
  stroke: none;
  width: 18px;
  height: 18px;
}


.inspiration-flow__arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px;
  position: relative;
  align-self: center;
}

.flow-arrow-icon {
  width: 28px;
  height: 28px;
  color: var(--color-gray-400);
  transform: rotate(90deg);
  position: relative;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.inspiration-flow__arrow:hover .flow-arrow-icon {
  color: var(--color-primary);
  opacity: 0.8;
}

@media (min-width: 768px) {
  .flow-arrow-icon {
    transform: rotate(0deg);
    width: 32px;
    height: 32px;
  }
  
  .inspiration-flow__arrow {
    padding: 16px;
  }
}

/* Individual Flow Item Stats */
.flow-item-stat {
  margin-top: 16px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.01) 100%);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
}

.flow-item-stat__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gray-500);
  margin-bottom: 6px;
  display: block;
}

.flow-item-stat__value {
  font-family: var(--font-family-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-gray-700);
  display: block;
}

.flow-item-stat--success {
  background: linear-gradient(135deg, var(--color-gray-100) 0%, var(--color-white) 100%);
  border-color: var(--color-gray-200);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.flow-item-stat--success .flow-item-stat__value {
  color: var(--color-primary);
  font-size: 22px;
}

/* Timeline Step Visual */
.timeline-step__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.timeline-step__image {
  max-width: 100%;
  height: auto;
  max-height: 200px;
  transition: transform 0.3s ease;
  scale: 1.65;
}

@media (max-width: 767px) {
  .timeline-step__image {
    max-height: 150px;
  }
}

/* Timeline Step CTA */
.timeline-step__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #d32f2f 100%);
  color: var(--color-white);
  font-family: var(--font-family-primary);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 14px 26px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 12px rgba(255, 0, 0, 0.25),
    0 2px 4px rgba(255, 0, 0, 0.15);
  margin-top: 20px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.timeline-step__cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
  transition: left 0.5s ease;
}

.timeline-step__cta:hover::before {
  left: 100%;
}

.timeline-step__cta:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 8px 20px rgba(255, 0, 0, 0.3),
    0 4px 8px rgba(255, 0, 0, 0.2);
}

.timeline-step__cta:active {
  transform: translateY(0);
}

.timeline-cta-icon {
  width: 19px;
  height: 19px;
  transition: transform 0.3s ease;
}

.timeline-step__cta:hover .timeline-cta-icon {
  transform: translateX(3px);
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .story {
    padding: 60px 0;
  }
  
  .story__header {
    margin-bottom: 48px;
  }
  
  .story__title {
    font-size: 32px;
  }
  
  .timeline-step {
    margin-bottom: 32px;
    min-height: 120px;
  }
  
  .timeline-step__year {
    font-size: 11px;
    padding: 5px 12px;
  }
  
  .timeline-step__dot {
    width: 18px;
    height: 18px;
    border-width: 3px;
  }
  
  .timeline-step__dot::after {
    width: 6px;
    height: 6px;
  }
  
  .timeline-step__dot--highlight {
    width: 26px;
    height: 26px;
  }
  
  .timeline-step__dot--highlight::after {
    width: 10px;
    height: 10px;
  }
  
  .timeline-step__dot--success {
    width: 28px;
    height: 28px;
    border-width: 4px;
  }
  
  .timeline-step__dot--success::after {
    width: 10px;
    height: 10px;
  }
  
  .timeline-step__content {
    padding: 20px 24px;
    max-width: 100%;
    margin-top: 0;
  }
  
  .timeline-step__title {
    font-size: 21px;
  }
  
  .timeline-step__description {
    font-size: 14px;
    margin-bottom: 16px;
  }
  
  .timeline-step__stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .timeline-stat {
    padding: 12px;
  }
  
  .timeline-stat__icon {
    width: 22px;
    height: 22px;
  }
  
  .timeline-stat__value {
    font-size: 19px;
  }
  
  .discovered-channel__visual {
    gap: 16px;
    padding: 20px;
  }
  
  .discovered-channel__thumbnail {
    width: 64px;
    height: 64px;
  }
  
  .discovered-channel__name {
    font-size: 16px;
  }
  
  .channel-stat {
    font-size: 12px;
    padding: 5px 10px;
  }
  
  .discovered-channel__insight {
    font-size: 13px;
    padding: 7px 12px;
  }
  
  .thumbnail-icon {
    width: 28px;
    height: 28px;
  }
  
  .inspiration-flow {
    gap: 32px;
  }
  
  .flow-icon {
    width: 32px;
    height: 32px;
  }
  
  .flow-arrow-icon {
    width: 24px;
    height: 24px;
  }
  
  .flow-item-stat {
    padding: 14px 16px;
  }
  
  .flow-item-stat__value {
    font-size: 18px;
  }
  
  .flow-item-stat--success .flow-item-stat__value {
    font-size: 20px;
  }
  
  .timeline-step__cta {
    font-size: 14px;
    padding: 12px 22px;
  }
  
  .thumbnail-frame {
    width: 180px;
  }
  
  .thumbnail-stat {
    font-size: 14px;
  }
  
  .thumbnail-stat--success {
    font-size: 16px;
  }
}

