/* ─── STORY ─── */
.s_nexus_story {
  padding: 100px 0;
  background: var(--deep);
}

.s_nexus_story_layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.s_nexus_story_body {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.s_nexus_story_visual {
  background: linear-gradient(135deg, rgba(59,31,163,0.35) 0%, rgba(13,7,48,0.9) 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.s_nexus_story_visual::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: #e02040;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.15;
}

.s_nexus_timeline {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  z-index: 1;
}

.s_nexus_timeline::before {
  content: '';
  position: absolute;
  left: 16px; top: 8px; bottom: 8px;
  width: 1px;
  background: var(--border);
}

.s_nexus_tl_item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.s_nexus_tl_dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(224,32,64,0.15);
  border: 1px solid rgba(224,32,64,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #e02040;
  font-weight: 700;
  flex-shrink: 0;
  z-index: 1;
}

.s_nexus_tl_dot .s_nexus_icon_img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  display: block;
}

.s_nexus_tl_year {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #e02040;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.s_nexus_tl_event {
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
}
